Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 LuaEdit 上测试了以下代码并存储了我想要的字符串。
local lineVal = myFile:read("*line")
但是,当我在 Gideros 中对其进行测试时,它会存储一个带有该行的字符串和一个回车符,而我不需要。如何在没有回车的情况下只获取行上的字符串?
请帮忙。
如果输出给你一个回车,你并不期望你总是可以用gsub它来摆脱它。
gsub
lineval = string.gsub(lineval,"\r","")