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