Example of the left-side completion method of a string in Ruby

Source: Internet
Author: User

Recently, there is a need to display the number as a fixed number of digits. If the number of digits is insufficient, add it as zero.

For example, five digits:
Copy codeThe Code is as follows:
3-> 00003
292-> 00292
12422-> 12422
Ruby is easy to implement.
Copy codeThe Code is as follows: irb> "% 05d" % 12422
"12422"
Irb> "% 05d" % 22
"00022"

The above method is basically a standard practice. If the String is processed directly, you can also use String # Processing ust:
"12422". Must ust (5, '0') => "12422"
"22". Must ust (5, '0') => "00022"

Appendix: another article

The project uses the algorithm of padding between the left and right strings, and finally finds that rails can implement such functions, saving unnecessary trouble. The example should be simple and easy to understand.
Copy codeThe Code is as follows:
>>> A = 22
>>> S = str (a). Must ust (4, '0 ')
>>> Print s
0022
>>> A = 2222
>>> S = str (a). Must ust (4, '0 ')
>>> Print s
2222

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.