Returns the lowercase equivalent of the given string. This function is locale independent. It only converts uppercase characters in the standard 7‐bit ASCII range. This is a feature, not a limitation.
Synopsis
Declared in <util/strencodings.h>
std::string
ToLower(std::string_view str);
Return Value
lowercased equivalent of str
Parameters
Name |
Description |
str [in] |
the string to convert to lowercase. |
Created with MrDocs