在Lua中获取用户的输入

时间:2012-08-22 08:29:02

标签: input lua

如何从Lua中获取用户的输入(如C中的scanf)? 例如,程序询问用户他的名字,然后他写下他的名字,然后程序将输出他的名字。

2 个答案:

答案 0 :(得分:22)

使用io.read()请注意,可以使用不同的参数自定义该功能。以下是一些例子。

 s = io.read("*n") -- read a number
 s = io.read("*l") -- read a line (default when no parameter is given)
 s = io.read("*a") -- read the complete stdin
 s = io.read(7) -- read 7 characters from stdin
 x,y = io.read(7,12) -- read 7 and 12 characters from stdin and assign them to x and y
 a,b = io.read("*n","*n") -- read two numbers and assign them to a and b

答案 1 :(得分:7)

可以使用io.read()检索最简单的输入。这将从标准输入读取一行(通常是键盘,但可以重定向,例如从文件中重定向)。

你可以像这样使用它:

io.write('Hello, what is your name? ')
local name = io.read()
io.write('Nice to meet you, ', name, '!\n')

io.read()只是io.input():read()的快捷方式,同样io.write()io.output():write()的快捷方式。 See the API for read() here

请注意,io.write()不会像print()那样自动终止您的行。