replace all occurrences of search in subject with replace
| 437 | |
| 438 | /// replace all occurrences of search in subject with replace |
| 439 | void ReplaceStringInPlace(std::string& subject, const std::string& search, const std::string& replace) { |
| 440 | subject = ReplaceString(subject, search, replace); |
| 441 | } |
| 442 | |
| 443 | /// checks if a fullString ends with a certain ending |
| 444 | bool StringEndsWith(const std::string& fullString, const std::string& ending) { |
nothing calls this directly
no test coverage detected