hanickadot / compile-time-regular-expressions

Compile Time Regular Expression in C++
https://twitter.com/hankadusikova
Apache License 2.0
3.22k stars 177 forks source link

how can I use Unicode Regex using C++17 #287

Open DamonsJ opened 1 year ago

DamonsJ commented 1 year ago

as you describe at : https://github.com/hanickadot/compile-time-regular-expressions#unicode

std::u8string is supported after c++20

How can I do the same thing using C++17?

I used std::string instead of std::u8string , I got wrong results.