std::match_results<BidirIt,Alloc>::suffix
来自 cppreference.com
< cpp | regex | match results
const_reference suffix() const; |
(自 C++11 起) | |
获取对表示正则表达式完整匹配结束与目标序列结束之间的目标序列的 std::sub_match 对象的引用。
除非 ready() 为 true,否则行为未定义。
内容 |
[edit] 参数
(无)
[edit] 返回值
对未匹配后缀的引用。
[edit] 示例
运行此代码
#include <iostream> #include <regex> #include <string> int main() { std::regex re("a(a)*by"); std::string target("baaaby123"); std::smatch sm; std::regex_search(target, sm, re); std::cout << sm.suffix() << '\n'; }
输出
123
[edit] 另请参阅
返回目标序列开头与完整匹配开头之间的子序列 (公共成员函数) |