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