UprightMan
09-21-2002, 06:48 PM
If I have a string containing lowercase letters and numbers, is there an easy way to convert it to a string containing the same number but with uppercase letters? (without using the ios::uppercase flag).
i.e. string x = "0x00cc"
x.dosomething();
cout << x ; outputs 0x00CC
TIA
i.e. string x = "0x00cc"
x.dosomething();
cout << x ; outputs 0x00CC
TIA