summaryrefslogtreecommitdiff
path: root/server/locale/zh-CN/libs/@lua/utf8.lni
diff options
context:
space:
mode:
Diffstat (limited to 'server/locale/zh-CN/libs/@lua/utf8.lni')
-rw-r--r--server/locale/zh-CN/libs/@lua/utf8.lni16
1 files changed, 16 insertions, 0 deletions
diff --git a/server/locale/zh-CN/libs/@lua/utf8.lni b/server/locale/zh-CN/libs/@lua/utf8.lni
index 0af45153..56e9bb06 100644
--- a/server/locale/zh-CN/libs/@lua/utf8.lni
+++ b/server/locale/zh-CN/libs/@lua/utf8.lni
@@ -14,11 +14,27 @@ end
```
]]
+["codes Lua 5.4"]
+description = [[
+--------
+```lua
+for p, c in utf8.codes(s) do
+ body
+end
+```
+]]
+
[codepoint]
description = '以整数形式返回 `s` 中 从位置 `i` 到 `j` 间(包括两端) 所有字符的编号。'
+["codepoint Lua 5.4"]
+description = '以整数形式返回 `s` 中 从位置 `i` 到 `j` 间(包括两端) 所有字符的编号。'
+
[len]
description = '返回字符串 `s` 中 从位置 `i` 到 `j` 间 (包括两端) UTF-8 字符的个数。'
+["len Lua 5.4"]
+description = '返回字符串 `s` 中 从位置 `i` 到 `j` 间 (包括两端) UTF-8 字符的个数。'
+
[offset]
description = '返回编码在 `s` 中的第 `n` 个字符的开始位置(按字节数) (从位置 `i` 处开始统计)。'