Convert string to upper case.
You can find more information in comments below.
/**
Direct convert string to upper case
@param[in, out] str String to be converted
@param locale Locale used for conversion. Default is current one
*/
void ToUpperDirect(String &str, const std::locale &locale = std::locale());
/**
Direct convert ansi string to upper case
@param[in, out] str String to be converted
@param locale Locale used for conversion. Default is current one
*/
void ToUpperDirect(AnsiString &str, const std::locale &locale = std::locale());
Namespace: | nitisa |
Include: | Nitisa/Core/Strings.h |