Ruby Study Notes (10)-differences between puts, P, and print

Source: Internet
Author: User

In common: it is used for screen output.

Differences:
After puts outputs the content, it will automatically wrap the text (if the content parameter is blank, only one line feed is output). If the content parameter contains an escape character, the output will first process the escape and then output
P is basically the same as puts, but does not process escape characters in parameters.
Print is basically the same as puts, but the line break is not automatically added to the end after the output content

S = "AAAA \ NBB \ TBB" p sp "*****************" puts SP "******** * ******* "Print s

The output result is (scite Editor Environment ):
"AAAA \ NBB \ TBB"
"****************"
Aaaa
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 numbers corresponding to the two bytes instead of the characters.

S = "medium" P sputs sprint s

Running result:
"\ 326 \ 320"
Medium
Medium> exit code: 0

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.