std::match_results::suffix
来自cppreference.com
< cpp | regex | match results
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
const_reference suffix() const; |
(C++11 起) | |
本章尚未完成 |
[编辑] 参数
(无)
[编辑] 返回值
代表该部分与靶序列之间的端部的整个匹配正则表达式的与靶序列的结束返回一个sub_match.
原文:
Returns a sub_match representing the part of the target sequence between the end of the entire match of the regular expression and the end of the target sequence.
[编辑] 示例
#include <iostream> #include <regex> #include <string> int main() { std::regex re("a(a)*b"); std::string target("baaaby"); std::smatch sm; std::regex_search(target, sm, re); std::cout << sm.suffix().str() << '\n'; }
输出:
y