📦 deps(tsl): sync tsl-playbook from ecedf69b

Source-Commit: ecedf69b9c
This commit is contained in:
ci[bot]
2026-08-24 09:29:51 +08:00
parent 2f0d80da65
commit 2b74e1466d
664 changed files with 28934 additions and 37020 deletions
@@ -4798,3 +4798,26 @@ echo wrapText(const_line, 20);
// sentence to two
// lines.
```
## `lcMapString(s, lcid, flag)`
声明:function
按照区域设置标识和映射标志转换字符串
<!-- tags: 字符串 文本 string text LCMapString 区域设置 字符映射 -->
| 参数 | 类型 | 说明 |
| ------ | ------- | -------------- |
| `s` | string | 要转换的字符串 |
| `lcid` | integer | 区域设置标识 |
| `flag` | integer | 字符串映射标志 |
返回:string
### 示例
```tsl
echo lcMapString("亞洲", 0x0804, 0x02000000);
// 输出:亚洲
```