String::ConvertToUpperCase
Defined in:
Converts each alphabetic character to upper case.
TSString.h
Prototype
String<0>& ConvertToUpperCase(void);
Description
The ConvertToUpperCase
function examines each character in the string and converts any in the range 'a'
to 'z'
to upper case.NOTE. The
ConvertToUpperCase
function is available only when the len
template parameter for the String
class is the default value of zero.
See Also