命名空间
变体
操作

std::ctype<CharT>::scan_is, std::ctype<CharT>::do_scan_is

来自 cppreference.com
< cpp‎ | locale‎ | ctype
 
 
 
 
定义在头文件 <locale>
public:
const CharT* scan_is( mask m, const CharT* beg, const CharT* end ) const;
(1)
protected:
virtual const CharT* do_scan_is( mask m, const CharT* beg, const CharT* end ) const;
(2)
1) 公共成员函数,调用最派生类的受保护虚成员函数 do_scan_is
2) 在字符数组 [begend) 中找到第一个满足分类掩码 m 的字符,即第一个字符 c,使得 is(m, c) 会返回 true

内容

[编辑] 参数

m - 要搜索的掩码
beg - 指向要搜索的字符数组中第一个字符的指针
end - 要搜索的字符数组的结束指针后面的一个

[编辑] 返回值

指向 [begend) 中第一个满足掩码的字符的指针,如果未找到这样的字符,则返回 end

[编辑] 示例

#include <clocale>
#include <iostream>
#include <iterator>
#include <locale>
 
int main()
{
    std::setlocale(LC_ALL, "en_US.utf8");
    std::wcout.imbue(std::locale("en_US.utf8"));
    auto& f = std::use_facet<std::ctype<wchar_t>>(std::wcout.getloc());
 
    // skip until the first letter
    wchar_t s1[] = L"      \t\t\n  Кошка";
    const wchar_t* p1 = f.scan_is(std::ctype_base::alpha, std::begin(s1), std::end(s1));
    std::wcout << '\'' << p1 << "'\n";
 
    // skip until the first letter
    wchar_t s2[] = L"123456789ネプネプ";
    const wchar_t* p2 = f.scan_is(std::ctype_base::alpha, std::begin(s2), std::end(s2));
    std::wcout << '\'' << p2 << "'\n";
}

输出

'Кошка'
'ネプネプ'

[编辑] 缺陷报告

以下行为更改缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 152 C++98 do_scan_is 的效果在 is(m) 中提到,
is 没有这样的重载
更正为 is(m, c)

[编辑] 另请参阅

使用分类表定位序列中第一个符合给定分类的字符
(std::ctype<char> 的公共成员函数) [编辑]
[虚拟]
定位序列中第一个不符合给定分类的字符
(虚拟受保护成员函数) [编辑]