当前位置:首页 > Windows程序 > 正文

How to add Leading Zeroes to a Number (Delphi Format)

2021-03-26 Windows程序

标签:

How to add Leading Zeroes to a Number (Delphi Format)

Here‘s how convert (an integer) number to a string by adding an amount of leading zeroes.

Suppose you are developing a database application, and you need to operate on, let‘s say, a customer number, where each number needs to be exactly 10 digits "long" - but you have customer numbers of 2,4,7, etc. (<10) digits.

The AddLeadingZeroes function accepts two parameters: aNumber is the number that needs to have exactly Length characters (if less, add leading zeroes).

function AddLeadingZeroes(const aNumber, Length : integer) : string; begin result := SysUtils.Format(%.*d, [Length, aNumber]) ; end;

Usage:

AddLeadingZeroes(2005, 10) ;

Will result in a ‘0000002005‘ string value.

How to add Leading Zeroes to a Number (Delphi Format)

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/67619.html