Ruby Learning Notes (1) the difference between-puts,p,print

Source: Internet
Author: User

The difference between Ruby learning notes-puts,p,print

Common denominator: Both are used for screen output.

Different points:
Puts the output will be wrapped (if the content parameter is empty, only one newline symbol is output), and if there is an escape character in the content parameter, the output will first process the escape and then output
P is basically the same as puts, but does not handle escape symbols in Parameters
Print is basically the same as puts, but does not automatically add line breaks at the end after the content is output

1234567 s = "aaaa\nbb\tbb"p sp "****************"puts sp "****************"print s

Output is (SciTE editor environment):
"AAAA\NBB\TBB"
"****************"
Aaaa
BB bb
"****************"
Aaaa
BB bb>exit code:0

In addition, when outputting double-byte characters, such as full-width English or Chinese characters, p will output the corresponding two bytes corresponding to the number, not the character

12345 s = "中"p sputs sprint s

Operation Result:
"\326\320"
In
Zhong >exit code:0

Ruby Learning Notes (1) the difference between-puts,p,print

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.