UnicodeString str = "text123";
boost::wregex e(L"text[0-9]+");
if (boost::regex_match(str.w_str(), e))
while this works perfectly and matches the string as it should???
boost::wregex e(L"text[0-9]+");
if (boost::regex_match(L"text123", e))
what am I missing here people? help!
also, is wregex the optimal for matching UnicodeStrings (UTF-8 in my case)?
> what am I missing here people? help!
If you don't get help here you may want to try the forums at
http://forums.embarcadero.com
(you can also reach them using a newsreader, but you do need an EDN
account to be able to post)
--
Pieter
"Do not do an immoral thing for moral reasons."
-- Thomas Hardy