std::match_results::str
来自cppreference.com
< cpp | regex | match results
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
string_type str( size_type n = 0 ) const; |
(C++11 起) | |
返回一个字符串,它表示指定的子匹配.
原文:
Returns a string representing the indicated sub-match.
如果n == 0,返回一个字符串,它表示整个匹配的表达.
原文:
If n == 0, a string representing entire matched expression is returned.
如果n > 0 && n < size(),“N”个子匹配,则返回一个字符串,表示.
原文:
If n > 0 && n < size(), a string representing nth sub-match is returned.
如果n >= size(),返回一个字符串,表示无以伦比的比赛.....
原文:
if n >= size(), a string representing the unmatched match is returned.
该呼叫是相当于string_type((*this)[n]);
原文:
The call is equivalent to string_type((*this)[n]);
目录 |
[编辑] 参数
n | - | 整数,指定相匹配的返回
原文: integral number specifying which match to return |
[编辑] 返回值
返回一个字符串,表示指定匹配或子匹配.
原文:
Returns a string representing the specified match or sub match.
[编辑] 示例
#include <iostream> #include <regex> #include <string> int main() { std::regex re("a(a)*b"); std::string target("aaab"); std::smatch sm; std::regex_match(target, sm, re); std::cout << sm.str(1) << '\n'; }
输出:
aaa
[编辑] 另请参阅
返回指定的子匹配 (公共成员函数) |