[C #] fill in 0 before the number to fill in the set length

Source: Internet
Author: User
[C #] set the length to 0 before the number.

This is a problem in small shops. How can we set the length to 0 before the number?

For example, if you want to limit 0 to 6 before 123, you can use the string. padleft and string. Format methods.

Http://msdn.microsoft.com/zh-tw/library/system.string.padleft (vs.80). aspx

Http://msdn.microsoft.com/zh-tw/library/system.string.format (vs.80). aspx

// Set the number to 0 and the length to 6
String snum= "123 ";
String pnum = snum. padleft (6, '0 ');
String fnum = string. Format (" ... {0: 00} ", Convert. toint16 (snum ));
MessageBox. Show ("original string:" + snum + "\ n passthrough padleft:" + pnum + "\ n passthrough string. Format:" + fnum );

Results

Exam

Http://www.blueshop.com.tw/board/show.asp? Subcde = brd20090319214030qif & fumcde =

Http://www.cnblogs.com/tuyile006/archive/2006/07/13/449884.aspx

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.