Skip to content

Instantly share code, notes, and snippets.

@lookat23
Created October 18, 2014 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lookat23/9f3c387f2129e67319ea to your computer and use it in GitHub Desktop.
Save lookat23/9f3c387f2129e67319ea to your computer and use it in GitHub Desktop.
std::string 改变大小写
static void toLowerCase( std::string& str )
{
std::transform(
str.begin(),
str.end(),
str.begin(),
tolower);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment