std::regex_traits::length
STD::regex[医]特征:长度
static std::size_t length(const char_type* p | | |
---|
计算以空结尾的字符序列的长度,即最小的字符序列。i
使...p[i]==0
...
标准图书馆专业化std::regex_traits执行std::char_traits<CharT>::length(p
参数
p | - | pointer to the first element of the null-terminated character sequence |
---|
返回值
以空结尾的字符串的长度。
例
二次
#include <regex>
#include <iostream>
int main()
{
std::cout << std::regex_traits<char>::length(u8"Кошка") << '\n'
<< std::regex_traits<wchar_t>::length(L"Кошка") << '\n';
}
二次
产出:
二次
10
5
二次
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。