Regex.Matches(string) Status?

  • Thread starter Thread starter Mark Oliver
  • Start date Start date
M

Mark Oliver

Hi,

Is there any way to get the status during a long elapsed time Matches
call like this?

string fortyMBString=new string('x',0x2800000);
rx=new Regex("x");
rx.Matches(fortyMBString);

Thanks,
Mark
 
P.S. I know I could put Match(string,int) in a loop, but if I do that I
don't think I can build a MatchCollection.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top