2011/3/15 Subhash Nagre <snagre.mumbai@gmail.com>
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.