std::regex_traits<CharT>::lookup_collatename
来自 cppreference.com
< cpp | regex | regex traits
template< class ForwardIt > string_type lookup_collatename( ForwardIt first, ForwardIt last ) const; |
||
如果字符序列 [
first,
last)
代表当前注入区域设置中有效排序元素的名称,则返回该排序元素的名称。否则,返回空字符串。
排序元素是 POSIX 正则表达式中 [.
和 .]
之间的符号。例如,[.a.]
在 C 区域设置中匹配字符 a
。[.tilde.]
在 C 区域设置中也匹配字符 ~
。[.ch.]
在捷克语区域设置中匹配二合字母 ch
,但在大多数其他区域设置中会生成 std::regex_error,错误代码为 std::regex_constants::error_collate。
[编辑] 参数
first, last | - | 一对迭代器,它们确定表示排序元素名称的字符序列 |
类型要求 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 |
[编辑] 返回值
命名排序元素的表示形式,作为字符字符串。
[编辑] 示例
运行此代码
#include <iostream> #include <regex> #include <string> struct noisy_traits : std::regex_traits<char> { template<class Iter> string_type lookup_collatename(Iter first, Iter last) const { string_type result = regex_traits::lookup_collatename(first, last); std::cout << "regex_traits<>::lookup_collatename(\"" << string_type(first, last) << "\") returns \"" << result << "\"\n"; return result; } }; int main() { std::string str = "z|}a"; // C locale collation order: x,y,z,{,|,},~ std::basic_regex<char, noisy_traits> re("[x-[.tilde.]]*a", std::regex::basic); std::cout << std::boolalpha << std::regex_match(str, re) << '\n'; }
可能的输出
regex_traits<>::lookup_collatename("tilde") returns "~" true