Advertisement
bueddl

Untitled

Sep 29th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <algorithm>
  2. #include <string>
  3.  
  4. std::string data = "Abc";
  5. std::transform(data.begin(), data.end(), data.begin(), ::tolower);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement