当前位置 : 主页 > 网络编程 > lua >

Lua – 从文件中读取一个UTF-8字符

来源:互联网 收集:自由互联 发布时间:2021-06-23
是否可以从文件中读取一个UTF-8字符? file:read(1)返回奇怪的字符,当我打印它时. function firstLetter(str) return str:match("[%z\1-\127\194-\244][\128-\191]*")end 函数从字符串str返回一个UTF-8字符.我需要
是否可以从文件中读取一个UTF-8字符?

file:read(1)返回奇怪的字符,当我打印它时.

function firstLetter(str)
  return str:match("[%z\1-\127\194-\244][\128-\191]*")
end

函数从字符串str返回一个UTF-8字符.我需要以这种方式读取一个UTF-8字符,但是从输入文件(不想将某些文件读取到内存中 – 通过文件:read(“* all”))

问题非常类似于这篇文章:
Extract the first letter of a UTF-8 string with Lua

function read_utf8_char(file)
  local c1 = file:read(1)
  local ctr, c = -1, math.max(c1:byte(), 128)
  repeat
    ctr = ctr + 1
    c = (c - 128)*2
  until c < 128
  return c1..file:read(ctr)
end
网友评论