gpt4 book ai didi

c++ - std::regex_match与字符éèà

转载 作者:行者123 更新时间:2023-12-01 14:52:53 25 4
gpt4 key购买 nike

例如,我想将“ram”,“rém”,“rèm”和“ràm”视为有效输入,因此我这样做:

std::string ss = "rém";
bool valid = std::regex_match(ss, std::regex("r[aéèà]m"));

但是在这种情况下,“valid”返回false,字符é,è和à是否有特殊之处?我应该修改正则表达式吗?
谢谢

最佳答案

您可以使用std::wstring定义字符串,然后使用std::wregex在Unicode字符串上实际运行正则表达式:

std::wstring ss = L"rém";
std::wcout << std::regex_match(ss, std::wregex(L"r[aéèà]m"));
// => 1, there is a match

关于c++ - std::regex_match与字符éèà,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61325845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com