/* 88888888 888888888888 88888888888888 8888888888888888 888888888888888888 888888 8888 888888 88888 88 88888 888888 8888 888888 88888888888888888888 88888888888888888888 8888888888888888888888 8888888888888888888888888888 88888888888888888888888888888888 88888888888888888888 888888888888888888888888 888888 8888888888 888888 888 8888 8888 888 888 888 OCTOBANANA Licensed under the MIT License Copyright (c) 2019 Brett Robinson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef OB_STRING_HH #define OB_STRING_HH #include #include #include #include #include #include #include #include #include namespace OB::String { std::string plural(std::string const& str, std::size_t num); std::string plural(std::string const& str, std::string const& end, std::size_t num); std::string file(std::string const& str); std::string replace(std::string str, std::string const& key, std::string const& val, std::size_t size = std::numeric_limits::max()); std::pair replace(std::string str, std::regex const& rx, std::function fn, std::size_t size = std::numeric_limits::max()); std::string format(std::string str, std::unordered_map args); std::string xformat(std::string str, std::unordered_map args); std::string to_string(double const val, int const pre = 2); std::vector split(std::string const& str, std::string const& delim, std::size_t size = std::numeric_limits::max()); std::vector split_view(std::string_view str, std::string_view delim, std::size_t size = std::numeric_limits::max()); std::string uppercase(std::string const& str); std::string lowercase(std::string const& str); std::string trim(std::string str); bool assert_rx(std::string const& str, std::regex rx); std::optional> match(std::string const& str, std::regex rx); std::string repeat(std::size_t const num, std::string const& str); bool starts_with(std::string const& str, std::string const& val); std::string escape(std::string str); std::string unescape(std::string str); std::size_t count(std::string const& str, std::string const& val); std::size_t damerau_levenshtein(std::string const& lhs, std::string const& rhs, std::size_t const weight_insert = 1, std::size_t const weight_substitute = 1, std::size_t const weight_delete = 1, std::size_t const weight_transpose = 1); } // namespace OB::String #endif // OB_STRING_HH