| 11125 | return s.find( infix ) != std::string::npos; |
| 11126 | } |
| 11127 | void toLowerInPlace( std::string& s ) { |
| 11128 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 11129 | } |
| 11130 | std::string toLower( std::string const& s ) { |
| 11131 | std::string lc = s; |
| 11132 | toLowerInPlace( lc ); |