- audio: 更新 audio-system 方法文档 - components: 新增 audio-listener/audio-source 组件方法文档,新增 remove-component 方法 - core: 更新 filewriter, types 文档 - math: 更新 box 方法文档 - memory: 更新 proxy-allocator 文档 - resources: 更新 loader 和 texture 文档 - rhi: 更新 opengl 设备、shader、swap-chain 文档 - threading: 更新 mutex 和 task-system 文档
37 lines
802 B
Markdown
37 lines
802 B
Markdown
# String::ToLower / ToUpper
|
|
|
|
```cpp
|
|
String ToLower() const;
|
|
String ToUpper() const;
|
|
```
|
|
|
|
将字符串转换为小写/大写形式,返回一个新的 String 对象,原字符串不变。
|
|
|
|
**参数:** 无
|
|
|
|
**返回:** 转换后的新 String 对象
|
|
|
|
**复杂度:** O(n),其中 n 为字符串长度
|
|
|
|
**示例:**
|
|
```cpp
|
|
#include "XCEngine/Core/Containers/String.h"
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
XCEngine::Containers::String s("Hello World 123");
|
|
|
|
XCEngine::Containers::String lower = s.ToLower();
|
|
std::cout << lower.CStr() << std::endl; // 输出: hello world 123
|
|
|
|
XCEngine::Containers::String upper = s.ToUpper();
|
|
std::cout << upper.CStr() << std::endl; // 输出: HELLO WORLD 123
|
|
|
|
return 0;
|
|
}
|
|
```
|
|
|
|
## 相关文档
|
|
|
|
- [String 总览](string.md) - 返回类总览
|