| 153 | } |
| 154 | |
| 155 | std::string StringUtilities::Trim(const std::string& input) { |
| 156 | return TrimRight(TrimLeft(input)); |
| 157 | } |
| 158 | |
| 159 | std::string StringUtilities::TrimLeft(const std::string& input) { |
| 160 | size_t startpos = input.find_first_not_of(WHITESPACE); |
no outgoing calls