#ifndef OB_STRING_HH #define OB_STRING_HH #include #include #include #include #include #include namespace OB::String { std::vector split(std::string const& str, std::string const& delim, std::size_t size = std::numeric_limits::max()); bool assert_rx(std::string str, std::regex rx); std::optional> match(std::string const& str, std::regex rx); } // namespace OB::String #endif // OB_STRING_HH