JSON
json.escape
使用 Real JSON string escaping rules 对 string 执行 escape,并返回不带 surrounding quotes 的 escaped content。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
使用 Real JSON string escaping rules 对 string 执行 escape,并返回不带 surrounding quotes 的 escaped content。
json.escape(text: string): string
local source = "line 1" .. string.char(10) .. [[line "2"]]
local escaped = json.escape(source)
print(escaped)