std::match_results::length
来自cppreference.com
< cpp | regex | match results
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
difference_type length( size_type n = 0 ) const; |
(C++11 起) | |
返回指定子匹配的长度.
原文:
Returns the length of the specified sub-match.
如果n == 0,整个匹配的表达式的长度返回.
原文:
If n == 0, the length of the entire matched expression is returned.
如果n > 0 && n < size(),“N”个副返回匹配的长度.
原文:
If n > 0 && n < size(), the length of nth sub-match is returned.
如果n >= size(),无与伦比的匹配的长度返回.
原文:
if n >= size(), a length of the unmatched match is returned.
呼叫相当于(*this)[n].length()的
原文:
The call is equivalent to (*this)[n].length().
[编辑] 参数
n | - | 整数,指定相匹配的检查
原文: integral number specifying which match to examine |
[编辑] 返回值
指定的匹配的长度或子匹配.
原文:
The length of the specified match or sub-match.
[编辑] 另请参阅
返回指定的子匹配 (公共成员函数) | |
返回的比赛(如有的话)的长度 原文: returns the length of the match (if any) (公共成员函数of std::sub_match )
|