Namespaces
Variants

std::regex_traits<CharT>:: value

From cppreference.net
Regular expressions library
Classes
(C++11)
Algorithms
Iterators
Exceptions
Traits
Constants
(C++11)
Regex Grammar
int value ( CharT ch, int radix ) const ;
(自 C++11 起)

确定在当前植入的区域设置下,数字字符 ch 在数值基数 radix 中所表示的数值。该函数由 std::regex 在处理 量词 (如 {1 } 或 {2,5 })、 反向引用 (如 \1 )以及十六进制和Unicode字符转义时调用。

参数

ch - 可能表示数字的字符
radix - 可为8、10或16的基数

返回值

如果字符 ch 在当前嵌入的区域设置中确实表示一个适用于数值基数 radix 的有效数字,则返回其数值;若出现错误则返回 - 1

示例

#include <iostream>
#include <locale>
#include <map>
#include <regex>
// 此自定义正则表达式特性允许使用日文数字
struct jnum_traits : std::regex_traits<wchar_t>
{   
    static std::map<wchar_t, int> data;
    int value(wchar_t ch, int radix) const
    {
        wchar_t up = std::toupper(ch, getloc());
        return data.count(up) ? data[up] : regex_traits::value(ch, radix);
    }
};
std::map<wchar_t, int> jnum_traits::data = {{L'〇',0}, {L'一',1}, {L'二',2},
                                            {L'三',3}, {L'四',4}, {L'五',5},
                                            {L'六',6}, {L'七',7}, {L'八',8},
                                            {L'九',9}, {L'A',10}, {L'B',11},
                                            {L'C',12}, {L'D',13}, {L'E',14},
                                            {L'F',15}};
int main()
{   
    std::locale::global(std::locale("ja_JP.utf8"));
    std::wcout.sync_with_stdio(false);
    std::wcout.imbue(std::locale());
    std::wstring in = L"風";
    if (std::regex_match(in, std::wregex(L"\\u98a8")))
        std::wcout << "\\u98a8 matched " << in << '\n';
    if (std::regex_match(in, std::basic_regex<wchar_t, jnum_traits>(L"\\u九八a八")))
        std::wcout << L"\\u九八a八 with custom traits matched " << in << '\n';
}

输出:

\u98a8 matched 風
\u九八a八 with custom traits matched 風