Skip to content

v2.2

Compare
Choose a tag to compare
@hanickadot hanickadot released this 22 Oct 20:53
· 202 commits to master since this release

Support for range and iterators.

auto input = "123,456,768"sv;

using namespace ctre::literals;
for (auto match: ctre::range(input,"[0-9]++"_ctre)) {
	std::cout << std::string_view{match} << "\n";
}