- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
C++11 regex::icase inconsistent behavior
(1 个回答)
去年关闭。
此函数应该返回字符串中元音的第一个实例,但它仅适用于小写字母。我以为regex_constants::icase
也应该处理大写字母。另外,请随时提出更好的方法来做到这一点。
以下为“HAPPY”返回 0(现在返回 -1),为“GRE a T”返回 3:
#include <regex>
int firstVowel(std::string str)
{
std::smatch match;
std::regex pattern("[aeiou]", std::regex_constants::icase);
while (std::regex_search(str, match, pattern))
{
return match.position();
}
return -1;
}
我通过主要获得返回:
std::cout << firstVowel("HAPPY") << "\n";
std::cout << firstVowel("GREaT") << "\n";
最佳答案
请不要使用该库 icase:C++11 regex::icase inconsistent behavior
这很糟糕....
而是将字符串切换为小写,如下所示:
std::string data = "Abc";
std::transform(data.begin(), data.end(), data.begin(),
[](unsigned char c){ return std::tolower(c); });
如果您使用的是非标准 ASCII 字符而不是您自己的字符,则希腊字母、汉字、罗马尼亚字母等没有上下限......
关于c++ - 为什么正则表达式的 icase 标志不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62867261/
这个问题在这里已经有了答案: C++11 regex::icase inconsistent behavior (1 个回答) 去年关闭。 此函数应该返回字符串中元音的第一个实例,但它仅适用于小写字母
// regex_replace example #include #include #include #include int main () { std::string INPUT =
来自类似 perl 的正则表达式,我希望下面的代码在所有 8 种情况下都能匹配正则表达式。但事实并非如此。我错过了什么? #include #include #include using nam
我在 VS2013 Update 4 和 VS2015 Update 3 中使用以下 C++ 代码,使用字符范围尝试不区分大小写地匹配并替换出现的位置: std::wstring strSource(
我是一名优秀的程序员,十分优秀!