Non-newline gets

M

Michael Boutros

Hello,

I'm writing a CLI and I want to get some additional information after I
first run the script, namely the username. Take a look.

-- code
puts "Welcome. Enter username: "
username = gets.strip
-- /code

That works fine, but the issue is that it takes the username on a new
line, like so:

$ ruby script.rb
Welcome. Enter username:
michaelboutros

How can I make it so that the username can be entered on the same line?

Thanks,
Michael Boutros
 
Y

Yaser Sulaiman

[Note: parts of this message were removed to make it a legal post.]

Don't use puts, use print instead.
print "Welcome. Enter username: "

Regards,
Yaser Sulaiman
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top