Possible Duplicate:
Convert a String In C++ To Upper Case

Hi, I need a portable function to convert string in c++ to upper case. I'm now using toupper( char); function. Is it a standard function? If not, what it's the correct way to do it across platforms? Btw, is there any web / wiki where I can list all c++ standard functions? Thank you.

link|improve this question
feedback

closed as exact duplicate by Björn Pollex, dalle, John Dibling, Paul R, FredOverflow Nov 17 '10 at 13:07

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 2 down vote accepted

Yes, toupper is declared in the cctype header. You can transform a string with an algorithm:

#include <algorithm>
#include <iostream>
#include <string>
#include <cctype>

int main()
{
    std::string str("hello there");
    std::cout << str << '\n';

    std::transform(str.begin(), str.end(), str.begin(), std::toupper);
    std::cout << str << '\n';
}
link|improve this answer
you'll need the scope resolution operator – John Dibling Nov 17 '10 at 13:03
Is there any recommendation when to use toupper(char) and when toupper(char, locale)? – kangcz Nov 17 '10 at 13:09
@John: Fixed. /1 more to go/ – phresnel Aug 25 '11 at 6:21
feedback

For the latter question, there's http://www.cplusplus.com/.

link|improve this answer
feedback

Hi in our project we use boost/algorithm/string to_upper function project for windows and linux

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.