| 13191 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 13192 | } |
| 13193 | std::string toLower( std::string const& s ) { |
| 13194 | std::string lc = s; |
| 13195 | toLowerInPlace( lc ); |
| 13196 | return lc; |
| 13197 | } |
| 13198 | std::string trim( std::string const& str ) { |
| 13199 | static char const* whitespaceChars = "\n\r\t "; |
| 13200 | std::string::size_type start = str.find_first_not_of( whitespaceChars ); |
no test coverage detected