如何在lua中编写Unicode符号。例如,我必须用9658作为符号 我写的时候
string.char( 9658 );
我收到了一个错误。那么如何编写这样的符号呢。
答案 0 :(得分:13)
Lua不看内部字符串。所以,你可以写
mychar = "►"
(2015年补充)
Lua 5.3引入了对UTF-8转义序列的支持:
Unicode字符的UTF-8编码可以插入带有转义序列\ u {XXX}的文字字符串中(请注意必需的括号),其中XXX是表示字符的一个或多个十六进制数字的序列代码点。
您也可以使用utf8.char(9658)
。
答案 1 :(得分:4)
这是Lua的编码器,它采用Unicode代码点并为相应的字符生成UTF-8字符串:
do
local bytemarkers = { {0x7FF,192}, {0xFFFF,224}, {0x1FFFFF,240} }
function utf8(decimal)
if decimal<128 then return string.char(decimal) end
local charbytes = {}
for bytes,vals in ipairs(bytemarkers) do
if decimal<=vals[1] then
for b=bytes+1,2,-1 do
local mod = decimal%64
decimal = (decimal-mod)/64
charbytes[b] = string.char(128+mod)
end
charbytes[1] = string.char(vals[2]+decimal)
break
end
end
return table.concat(charbytes)
end
end
c=utf8(0x24) print(c.." is "..#c.." bytes.") --> $ is 1 bytes.
c=utf8(0xA2) print(c.." is "..#c.." bytes.") --> ¢ is 2 bytes.
c=utf8(0x20AC) print(c.." is "..#c.." bytes.") --> € is 3 bytes.
c=utf8(0x24B62) print(c.." is "..#c.." bytes.") --> is 4 bytes.
答案 2 :(得分:3)
也许这可以帮到你:
function FromUTF8(pos)
local mod = math.mod
local function charat(p)
local v = editor.CharAt[p]; if v < 0 then v = v + 256 end; return v
end
local v, c, n = 0, charat(pos), 1
if c < 128 then v = c
elseif c < 192 then
error("Byte values between 0x80 to 0xBF cannot start a multibyte sequence")
elseif c < 224 then v = mod(c, 32); n = 2
elseif c < 240 then v = mod(c, 16); n = 3
elseif c < 248 then v = mod(c, 8); n = 4
elseif c < 252 then v = mod(c, 4); n = 5
elseif c < 254 then v = mod(c, 2); n = 6
else
error("Byte values between 0xFE and OxFF cannot start a multibyte sequence")
end
for i = 2, n do
pos = pos + 1; c = charat(pos)
if c < 128 or c > 191 then
error("Following bytes must have values between 0x80 and 0xBF")
end
v = v * 64 + mod(c, 64)
end
return v, pos, n
end
答案 3 :(得分:2)
为了获得对Unicode字符串内容的更广泛支持,一种方法是slnunicode,它是作为Selene数据库库的一部分开发的。它将为您提供一个模块,该模块支持标准string
库的大部分功能,但支持Unicode字符和UTF-8编码。