Lua - 从用户那里获取命令行输入?
在我的 lua 程序中,我想在继续操作之前停止并要求用户确认。我不知道如何停止并等待用户输入,该怎么办?
In my lua program, i want to stop and ask user for confirmation before proceeding with an operation. I'm not sure how to stop and wait for user input, how can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
看一下 io 库,它默认将标准输入作为默认输入文件:
http://www.lua.org/pil/21.1.html
Take a look at the
io
library, which by default has standard-input as the default input file:http://www.lua.org/pil/21.1.html
我曾经使用过这样的代码。我将以一种有效的方式输入:
I've worked with code like this. I will type this in a way it will work:
我用:
I use:
尝试使用以下代码
m=io.read()
如果 m==“是”那么
(在此处插入函数)
结束
try to use folowing code
m=io.read()
if m=="yes" then
(insert functions here)
end
从我完成的 lua 工作来看(不是很多),我想说的是,如果你使用 string.sub,同时使用大写和小写字母是多余的。
那应该有效。
From the bit of lua that I've done (not a lot), I'm going to say that using both uppercase and lowercase letters is redundant if you use string.sub.
That should work.