std::ctype<char>::scan_not
来自 cppreference.cn
< cpp | 本地化 | ctype char
定义于头文件 <locale> |
||
const char* scan_not( mask m, const char* beg, const char* end ) const; |
||
查找字符数组 [
beg,
end)
中第一个不满足分类掩码 m 的字符,即第一个字符 c
使得 table()[(unsigned char)c] & m 返回 false。
若 (unsigned char)c >= std::ctype<char>::table_size,则替换为实现定义的值,而非 table()[(unsigned char)c],对于不同的 c 值可能不同。
目录 |
[编辑] 参数
m | - | 要搜索的掩码 |
beg | - | 指向要搜索字符数组中第一个字符的指针 |
end | - | 指向要搜索字符数组末尾之后一个位置的指针 |
[编辑] 返回值
指向 [
beg,
end)
中第一个不满足掩码的字符的指针,若未找到此类字符则为 end。
[编辑] 注意
与主模板 std::ctype 不同,此特化在分类字符时不会执行虚函数调用。要自定义行为,派生类可向基类构造函数提供非默认的分类表。
[编辑] 示例
运行此代码
#include <iostream> #include <iterator> #include <locale> int main() { auto& f = std::use_facet<std::ctype<char>>(std::locale()); // skip leading whitespace char s1[] = " \t\t\n Test"; const char* p1 = f.scan_not(std::ctype_base::space, std::begin(s1), std::end(s1)); std::cout << '\'' << p1 << "'\n"; // skip leading digits char s2[] = "123456789abcd"; const char* p2 = f.scan_not(std::ctype_base::digit, std::begin(s2), std::end(s2)); std::cout << '\'' << p2 << "'\n"; }
输出
'Test' 'abcd'
[编辑] 参阅
[virtual] |
在一个序列中定位第一个不符合给定分类的字符 ( std::ctype<CharT> 的虚保护成员函数) |
使用分类表在序列中定位第一个符合给定分类的字符 (公有成员函数) |