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