"translating" lua 中的一个字符到另一个字符

"translating" One character to another in lua

我想制作一个 lua 脚本,该脚本接受 table 的输入,然后输出 table 中的字符串对应的全角,例如

input = {"Hello", " ", "World"}
print(full(table.concat(input)))

然后它会打印出“Hellovoulh”

我用这个试过了:

local encoding = [[ 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!゛#$%&()*+、ー。/:;〈=〉?@[\]^_‘{|}~]]
function char(i)
   return encoding:sub(i:len(),i:len())
end
function decode(t)
   for i=1,#t do t[i]=char(t[i]) end
   return table.concat(t)
end
function returns(word, word_eol)
    print(char(word_eol[2]))
end

但这没有用

注意:它是 hexchat 的插件,这就是为什么我将它作为 print(char(word_eol[2])))

因为当你在 hexchat 中 hook 一个命令时,它会吐出一个 table 是命令名称,然后是

之后输入的内容
function full(s)
   return (s:gsub('.', function(c)
      c = c:byte()
      if c == 0x20 then
         return string.char(0xE3, 0x80, 0x80)
      elseif c >= 0x21 and c <= 0x5F then
         return string.char(0xEF, 0xBC, c+0x60)
      elseif c >= 0x60 and c <= 0x7E then
         return string.char(0xEF, 0xBD, c+0x20)
      end
   end))
end

if(string)= [[0123456789abcd找到 (string) 的第 n 个字符,其中 n 是字符的长度,它永远是一个。如果我理解正确的话,这将通过使用单独的字母表和匹配字符来完成工作。

local encoding = [[ 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!゛#$%&()*+、ー。/:;〈=〉?@[]^_‘{|}~]]
local decoding = [[ 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&()*+,-./:;{=}?@[]^_'{|}~]]
function char(i)
   local l = decoding:find(i,1,true)
   return encoding:sub(l,l)
end
function decode(t)
   for i=1,#t do t[i]=char(t[i]) end
   return table.concat(t)
end
function returns(word, word_eol)
    print(char(word_eol[2]))
end