I learned that gets
creates a new line and asks the user to input something, and gets.chomp
does the same thing except that it does not create a new line. gets
must return an object, so you can call a method on it, right? If so, lets name that object returned by gets
as tmp
, then you can call the chomp
method of tmp
. But before gets
returns tmp
, it should print a new line on the screen. So what does chomp
do? Does it remove the new line after the gets
created it?
Another way to re-expound my question is: Are the following actions performed when I call gets.chomp
?
gets
prints a new linegets
returns tmp
tmp.chomp
removes the new lineIs this the right order?
gets
lets the user input a line and returns it as a value to your program. This value includes the trailing line break. If you then call chomp
on that value, this line break is cut off. So no, what you have there is incorrect, it should rather be:
gets
gets a line of text, including a line break at the end. gets
returns that line of text as a string value.chomp
on that value removes the line breakThe fact that you see the line of text on the screen is only because you entered it there in the first place. gets
does not magically suppress output of things you entered.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With