What is the best way people have found to do String to Lower case / Upper case in C++?
The issue is complicated by the fact that C++ isn\'t an English only programmi
If you have Boost, then it has the simplest way. Have a look at to_upper()/to_lower() in Boost string algorithms.