std::ctype<char>::scan_not
来自 cppreference.com
< cpp | locale | 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'
[编辑] 另请参阅
[虚拟] |
定位序列中第一个不符合给定分类的字符 ( std::ctype<CharT> 的虚拟受保护成员函数) |
使用分类表定位序列中第一个符合给定分类的字符 (公共成员函数) |