2022年10月19日

c++ std::string转大、小写

摘要: #include <iostream> #include <algorithm> int main() { std::string src = "HELLO, WORLD!"; std::string dst; std::transform(src.begin(), src.end(), std:: 阅读全文

posted @ 2022-10-19 15:42 OctoberKey 阅读(178) 评论(0) 推荐(0)

导航