I want to convert a std::string to lowercase. I am aware of the function tolower(), however in the past I have had issues with this function and it
std::string
tolower()
Use fplus::to_lower_case() from fplus library.
fplus::to_lower_case()
Search to_lower_case in fplus API Search
to_lower_case
Example:
fplus::to_lower_case(std::string("ABC")) == std::string("abc");