前端之家收集整理的这篇文章主要介绍了
在Lua中编写多行文本文件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道让我的脚本在
文件中写入
内容(比如text.txt)的最佳
方法,这种方式总是会在最后
添加换行符.当我使用附加文本时
@H_
502_2@file = io.open(test.txt,"a")
file:write("hello")
两次,文件看起来像:
@H_
502_2@hellohello
但我希望它看起来像:
@H_
502_2@hello
hello
与print不同,
调用io.write时不会
自动添加新行字符,您可以自己
添加:
@H_
502_2@file:write("hello","\n")
原文链接:https://www.f2er.com/lua/274517.html