gpt4 book ai didi

c++ - std::regex_match 和 std::regex_search 之间的区别?

转载 作者:IT老高 更新时间:2023-10-28 12:45:32 27 4
gpt4 key购买 nike

已编写以下程序以使用 C++11 std::regex_match 获取“Day”信息& std::regex_search .但是,使用第一种方法返回 false,第二种方法返回 true(预期)。我阅读了与此相关的文档和已经存在的 SO 问题,但我不明白这两种方法之间的区别以及我们何时应该使用它们中的任何一种?对于任何常见问题,它们可以互换使用吗?

Difference between regex_match and regex_search?

#include<iostream>
#include<string>
#include<regex>

int main()
{
std::string input{ "Mon Nov 25 20:54:36 2013" };
//Day:: Exactly Two Number surrounded by spaces in both side
std::regex r{R"(\s\d{2}\s)"};
//std::regex r{"\\s\\d{2}\\s"};
std::smatch match;

if (std::regex_match(input,match,r)) {
std::cout << "Found" << "\n";
} else {
std::cout << "Did Not Found" << "\n";
}

if (std::regex_search(input, match,r)) {
std::cout << "Found" << "\n";
if (match.ready()){
std::string out = match[0];
std::cout << out << "\n";
}
}
else {
std::cout << "Did Not Found" << "\n";
}
}

输出

Did Not Found

Found

25

在这种情况下,为什么第一个正则表达式方法返回 falseregex 似乎是正确的,所以理想情况下两者都应该返回 true。我通过将 std::regex_match(input,match,r) 更改为 std::regex_match(input,r) 来运行上述程序,发现它仍然返回 假的。

有人能解释一下上面的例子,以及这些方法的一般用例吗?

最佳答案

regex_match 仅在整个输入序列匹配时返回 true,而 regex_search 即使只有一个子序列匹配正则表达式

引自 N3337,

§28.11.2/2 regex_match [re.alg.match]

Effects: Determines whether there is a match between the regular expression e, and all of the character sequence [first,last). ... Returns true if such a match exists, false otherwise.

上面的描述是针对 regex_match 重载的,它需要一对迭代器来匹配要匹配的序列。其余的重载都是根据这个重载来定义的。

对应的regex_search重载描述为

§28.11.3/2 regex_search [re.alg.search]

Effects: Determines whether there is some sub-sequence within [first,last) that matches the regular expression e. ... Returns true if such a sequence exists, false otherwise.


在您的示例中,如果您将 regex 修改为 r{R"(.*?\s\d{2}\s.*)"}; regex_matchregex_search 都会成功(但匹配结果不只是日期,而是整个日期字符串)。

Live demo您的示例的修改版本,其中 regex_matchregex_search 都捕获并显示了这一天。

关于c++ - std::regex_match 和 std::regex_search 之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26696250/

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