c++standard-library tag

1 questions


1 answers
119 views
0
How do I lowercase std::string?

How do I lowercase std::string?Is there any other way besides my sauce?This looks so messychar upperToLower(char in){ if(in<='Z' && in>='A') return in-('Z'-'z'); return in;}...std::trans...


© 2024 OneMinuteCode. All rights reserved.