Adding unicode regex mappings
This commit is contained in:
parent
4c3e882a85
commit
a5710a4101
2 changed files with 6 additions and 0 deletions
|
@ -1649,3 +1649,7 @@ const std::map<char32_t, char32_t> unicode_map_lowercase = {
|
|||
{0x1E917, 0x1E939}, {0x1E918, 0x1E93A}, {0x1E919, 0x1E93B}, {0x1E91A, 0x1E93C}, {0x1E91B, 0x1E93D}, {0x1E91C, 0x1E93E},
|
||||
{0x1E91D, 0x1E93F}, {0x1E91E, 0x1E940}, {0x1E91F, 0x1E941}, {0x1E920, 0x1E942}, {0x1E921, 0x1E943},
|
||||
};
|
||||
|
||||
const std::map<std::string, std::wstring> unicode_regex_to_wregex = {
|
||||
|
||||
};
|
|
@ -14,3 +14,5 @@ extern const std::vector<std::pair<uint32_t, uint32_t>> unicode_ranges_symbol;
|
|||
extern const std::vector<std::pair<uint32_t, uint32_t>> unicode_ranges_control;
|
||||
extern const std::multimap<uint32_t, uint32_t> unicode_map_nfd;
|
||||
extern const std::map<char32_t, char32_t> unicode_map_lowercase;
|
||||
extern const std::map<std::string, std::wstring> unicode_regex_to_wregex;
|
||||
extern const std::map<std::string, std::string> unicode_regex_to_regex;
|
Loading…
Add table
Add a link
Reference in a new issue