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