I'm attempting to develop a program on repl.it using its Ruby platform. Here's what I've got:
puts "Copy the entire request page and paste it into this console, then
hit ENTER."
request_info = gets("Edit Confirmation").chomp.gsub!(/\s+/m, '
').strip.split(" ")
puts "What is your name?"
your_name = gets.chomp
puts "Thanks, #{your_name}!"
The way I've got it, the user pastes a multi-line request, which ends with "Edit Confirmation"
, and then it splits the request, word-by-word, into its own array for me to parse and pull the relevant data.
But I can't seem to use the gets
command a second time after initially inquiring the user for a multi-line input at the start. Any other gets
command I attempt to use after that is skipped, and the program ends.