← Back to context Comment by semiinfinitely 4 hours ago "C++47: Finally, a Standard Way to Split a String by Delimiter" 3 comments semiinfinitely Reply porise 3 hours ago I'm still waiting for C++ to support Unicode properly. einpoklum 2 hours ago A standard way to split a string? Well, what's wrong with: std::views::split(my_string, delimeter) ? nananana9 2 hours ago Template bloat, terrible compile errors, terrible debug build performance, 1 second of extra compile time per cpp file when you include ranges, and you can't step through it in a debugger.
einpoklum 2 hours ago A standard way to split a string? Well, what's wrong with: std::views::split(my_string, delimeter) ? nananana9 2 hours ago Template bloat, terrible compile errors, terrible debug build performance, 1 second of extra compile time per cpp file when you include ranges, and you can't step through it in a debugger.
nananana9 2 hours ago Template bloat, terrible compile errors, terrible debug build performance, 1 second of extra compile time per cpp file when you include ranges, and you can't step through it in a debugger.
I'm still waiting for C++ to support Unicode properly.
A standard way to split a string? Well, what's wrong with:
Template bloat, terrible compile errors, terrible debug build performance, 1 second of extra compile time per cpp file when you include ranges, and you can't step through it in a debugger.