ctre only
| 88 | |
| 89 | // ctre only |
| 90 | void TokenizeTest() |
| 91 | { |
| 92 | for (auto token : ctre::tokenize<R"(\d+\.)">("127.0.0.1")) |
| 93 | std::print("ctre tokenize: {} ", token.to_view()); |
| 94 | std::print("\n"); |
| 95 | for (auto m : ctre::split<ctreRegex>(multiStr)) |
| 96 | std::println("ctre split: {} {}", m.to_view(), m.get<1>().to_view()); |
| 97 | } |
| 98 | |
| 99 | int main() |
| 100 | { |