
15 Mar
2011
15 Mar
'11
1:06 p.m.
2011/3/15 Subhash Nagre
Hello, I have a string "(123) Hello" and I want to seach String (123) using boost::regex, Also I needed to do a full word search, so I added \b in the end. Here is my code
std::string searchWord = "(123)";
Try "\\(123\\)". Roman Perepelitsa.