4 Feb
2004
4 Feb
'04
2:20 p.m.
Hi,
I am using the regex library and using the following expression. But it seems it is wrong. Since there is no compilation or linker error but runtime error.
the expression is
boost::regex e("*\\.exe")
I think that you should try: boost::regex e(".*\\.exe") The '*' must follow a valid regular expresion.