27 Jun
2005
27 Jun
'05
3:41 p.m.
"Thameem Ansari - CTD ,Chennai"
Hi, I am facing the following problem I have the following code in my application written in VC++ 6.0
std::vectorstd::string v; boost::RegEx expr("(?=adc)", TRUE); expr.Grep(v, "XYZ(M-ADC)");
While debugging, then application hangs in the statement 'expr.Grep(v, "XYZ(M-ADC)")' .
I've not used regex in a while, but the thing that jumps out at me 'RegEx' and 'Grep'. I don't think any boost library uses names that are not all lower case. Which version of boost are you using? Could the above type and function be something you created? Jeff Flinn