| 18 | } |
| 19 | |
| 20 | std::string string_tolower(const std::string& str) |
| 21 | { |
| 22 | std::string copy = str; |
| 23 | std::transform(copy.begin(), copy.end(), copy.begin(), [](char ch) { |
| 24 | return (char)::tolower(int(ch)); |
| 25 | }); |
| 26 | return copy; |
| 27 | } |
| 28 | |
| 29 | std::string string_replace(std::string subject, const std::string& search, const std::string& replace) |
| 30 | { |
no test coverage detected