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.
 
Back
Top