Nel mio programma lua, voglio fermarmi e chiedere conferma all'utente prima di procedere con un'operazione. Non sono sicuro di come fermarmi e aspettare l'input dell'utente, come può essere fatto?Lua - ottieni input da riga di comando dall'utente?
risposta
Date un'occhiata alla biblioteca io
, che di default è standard input come il file di input di default:
local answer
repeat
io.write("continue with this operation (y/n)? ")
io.flush()
answer=io.read()
until answer=="y" or answer=="n"
Ho lavorato con codice come questo. Io digitare questo in un modo che funzionerà:
io.write("continue with this operation (y/n)?")
answer=io.read()
if answer=="y" then
--(put what you want it to do if you say y here)
elseif answer=="n" then
--(put what you want to happen if you say n)
end
io uso:
print("Continue (y/n)?")
re = io.read()
if re == "y" or "Y" then
(Insert stuff here)
elseif re == "n" or "N" then
print("Ok...")
end
tenta di utilizzare il codice folowing
m=io.read()
if m=="yes" then
(insert functions here)
end
print("Continue (y/n)?")
re = io.read()
if re == "y" or "Y" then
(Insert stuff here)
elseif re == "n" or "N" then
print("Ok...")
end
Dal bit di lua che ho fatto (non molto), sto per dire che usare lettere maiuscole e minuscole è ridondante se si usa string.sub.
print("Continue? (y/n)")
local re = io.read()
--[[Can you get string.sub from a local var?
If so, this works. I'm unfamiliar with io(game
lua uses GUI elements and keypresses in place of the CLI.]]
if re.sub == "y" then
--do stuff
if re.sub == "n" then
--do other stuff
end
Che dovrebbe funzionare.
're.sub' si risolverà nella funzione' string.sub' e sarà sempre diseguale in '" y "' o '" n "'. Inoltre, la corrispondenza delle stringhe è case sensitive. Nella migliore delle ipotesi puoi fare 're: match (" [nN] ")' e 're: match (" [yY] ")' –
impressionante, grazie –
'io.read()' impone automatico 'io.flush()' quando si lavora con default stdin/out? –
@EgorSkriptunoff, potrebbe, ma non possiamo esserne sicuri. Non credo che ANSI C ne dica nulla. – lhf