---------------------------------------------------------------------- TrimString Removes any occurrences of the characters in 'remove' from either end of the string. ----------------------------------------------------------------------
| 228 | // end of the string. |
| 229 | // ---------------------------------------------------------------------- |
| 230 | inline int TrimString(string* s, const StringPiece& remove) { |
| 231 | return TrimStringRight(s, remove) + TrimStringLeft(s, remove); |
| 232 | } |
| 233 | |
| 234 | // ---------------------------------------------------------------------- |
| 235 | // TrimRunsInString |
no test coverage detected