local file = io.open("example.txt","w")file:write("Example")file.close()解决方法 你需要将其分解为不同的步骤.
以下示例将“HelloWorld”替换为“Hello,World”
-- -- Read the file -- local f = io.open("example.txt","r") local content = f:read("*all") f:close() -- -- Edit the string -- content = string.gsub(content,"Hello","Hello,") -- -- Write it out -- local f = io.open("example.txt","w") f:write(content) f:close()
当然你需要添加错误测试等.
总结以上是内存溢出为你收集整理的Lua – 在txt文件中插入或删除字符串全部内容,希望文章能够帮你解决Lua – 在txt文件中插入或删除字符串所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)