Skip to content
StringHelpers

ToLower

Internal helper function
static std::string ToLower(const std::string str)

A static helper function.

Will return str, but in all lower case.
That's it.


Example:

myString:
Hello, WORLD!
C++:
StringHelpers::ToLower(myString);
Returns:
hello, world!