std::match_results::operator[]
来自cppreference.com
< cpp | regex | match results
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
const_reference operator[]( size_type n ) const; |
(C++11 起) | |
返回一个指定的子匹配.
如果n == 0,整个匹配的表达式返回.
原文:
If n == 0, entire matched expression is returned.
如果n > 0 && n < size(),“N”个子匹配,则返回.
原文:
If n > 0 && n < size(), nth sub-match is returned.
如果n >= size(),则返回一个子匹配无以伦比的比赛.
原文:
if n >= size(), a sub-match representing the unmatched match is returned.
目录 |
[编辑] 参数
n | - | 整数,指定相匹配的返回
原文: integral number specifying which match to return |
[编辑] 返回值
返回一个子匹配指定的匹配或子匹配.
原文:
Returns a sub-match representing the specified match or sub match.
[编辑] 示例
#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[1] << '\n'; }
输出:
aa
[编辑] 另请参阅
返回的字符序列为特定子如同 原文: returns the sequence of characters for the particular sub-match (公共成员函数) |