gpt4 book ai didi

c++ - 将 wstring 转换为小写

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:01:48 26 4
gpt4 key购买 nike

我想将wstring 转换成小写。我发现有很多使用语言环境信息的答案。 wstring 是否也有类似 ToLower() 的函数?

最佳答案

std::towlower是你想要的功能,来自<cwtype> .此 header 包含许多用于处理宽字符串的函数。

例子:

// Convert wstring to upper case
wstring wstrTest = L"I am a STL wstring";
transform(
wstrTest.begin(), wstrTest.end(),
wstrTest.begin(),
towlower);

关于c++ - 将 wstring 转换为小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42022182/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com