将 tr1::regex 与 unicode 字符串一起使用时出现问题
std::wstring str(L"something");
std::tr1::wregex rx(L"something");
std::tr1::wcmatch res;
std::tr1::regex_search(str, res, rx);
这无法编译并出现错误:
error C2784: 'bool std::tr1::regex_search(const std::basic_string<_Elem,_StTraits,_StAlloc> &,const std::tr1::basic_regex<_Elem,_RxTraits> &,std::tr1::regex_constants::match_flag_type)' : could not deduce template argument for 'const std::tr1::basic_regex<_Elem,_RxTraits> &' from 'std::tr1::wcmatch'
std::wstring str(L"something");
std::tr1::wregex rx(L"something");
std::tr1::wcmatch res;
std::tr1::regex_search(str, res, rx);
This fails to compile with the error:
error C2784: 'bool std::tr1::regex_search(const std::basic_string<_Elem,_StTraits,_StAlloc> &,const std::tr1::basic_regex<_Elem,_RxTraits> &,std::tr1::regex_constants::match_flag_type)' : could not deduce template argument for 'const std::tr1::basic_regex<_Elem,_RxTraits> &' from 'std::tr1::wcmatch'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用用于
wstring
迭代器的wsmatch
,而不是用于wchar_t*
的wcmatch
。You should be using
wsmatch
, which is forwstring
iterators, notwcmatch
, which is forwchar_t*
.