std::regex_traits<CharT>::isctype
来自 cppreference.com
< cpp | regex | regex traits
bool isctype( CharT c, char_class_type f ) const; |
||
确定字符 c 是否属于由 f标识的字符类,而 f 是由 lookup_classname() 返回的值或几个此类值的按位 OR。
标准库中 std::regex_traits 特化的此函数版本执行以下操作
2) 然后尝试通过调用 std::use_facet<std::ctype<CharT>>(getloc()).is(m, c) 在注入的区域设置中对字符进行分类。
- 如果返回 true,则
isctype()
也将返回 true。 - 否则,如果 c 等于 '_',并且 f 包含调用 lookup_classname() 用于字符类
[:w:]
的结果,则返回 true,否则返回 false。
内容 |
[编辑] 参数
c | - | 要分类的字符 |
f | - | 从一次或多次调用 lookup_classname() 获得的位掩码 |
[编辑] 返回值
如果 c 被 f 分类,则为 true,否则为 false。
[编辑] 示例
运行此代码
#include <iostream> #include <regex> #include <string> int main() { std::regex_traits<char> t; std::string str_alnum = "alnum"; auto a = t.lookup_classname(str_alnum.begin(), str_alnum.end()); std::string str_w = "w"; // [:w:] is [:alnum:] plus '_' auto w = t.lookup_classname(str_w.begin(), str_w.end()); std::cout << std::boolalpha << t.isctype('A', w) << ' ' << t.isctype('A', a) << '\n' << t.isctype('_', w) << ' ' << t.isctype('_', a) << '\n' << t.isctype(' ', w) << ' ' << t.isctype(' ', a) << '\n'; }
输出
true true true false false false
演示 lookup_classname() / isctype()
的自定义正则表达式特征实现
运行此代码
#include <cwctype> #include <iostream> #include <locale> #include <regex> // This custom regex traits uses wctype/iswctype to implement lookup_classname/isctype. struct wctype_traits : std::regex_traits<wchar_t> { using char_class_type = std::wctype_t; template<class It> char_class_type lookup_classname(It first, It last, bool = false) const { return std::wctype(std::string(first, last).c_str()); } bool isctype(wchar_t c, char_class_type f) const { return std::iswctype(c, f); } }; int main() { std::locale::global(std::locale("ja_JP.utf8")); std::wcout.sync_with_stdio(false); std::wcout.imbue(std::locale()); std::wsmatch m; std::wstring in = L"風の谷のナウシカ"; // matches all characters (they are classified as alnum) std::regex_search(in, m, std::wregex(L"([[:alnum:]]+)")); std::wcout << "alnums: " << m[1] << '\n'; // prints "風の谷のナウシカ" // matches only the katakana std::regex_search(in, m, std::basic_regex<wchar_t, wctype_traits>(L"([[:jkata:]]+)")); std::wcout << "katakana: " << m[1] << '\n'; // prints "ナウシカ" }
输出
alnums: 風の谷のナウシカ katakana: ナウシカ
[编辑] 缺陷报告
以下行为变更缺陷报告已追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2018 | C++11 | m 的值未指定 | 匹配 lookup_classname() 的最小支持 |
[编辑] 参见
按名称获取字符类 (公共成员函数) | |
[虚拟] |
对字符或字符序列进行分类 ( std::ctype<CharT> 的虚拟受保护成员函数) |
根据指定的 LC_CTYPE 类别对宽字符进行分类(函数) |