在线文档教程
C++
规律表达 | Regular expressions

std::match_results::length

STD:匹配[医]结果:长度

difference_type length( size_type n = 0 ) const;(since C++11)

返回指定子匹配的长度。

如果n == 0,则返回整个匹配表达式的长度。

如果n > 0 && n < size(),返回_n_th子匹配的长度。

如果n >= size(),则返回不匹配匹配的长度。

调用等效于(*this)[n].length()...

参数

n-integral number specifying which match to examine

返回值

指定匹配或子匹配的长度。

另见

operator[]returns specified sub-match (public member function)
lengthreturns the length of the match (if any) (public member function of std::sub_match)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/regex/Match[医]结果/长度