I need to have a string, based on an integer, which should always have 5 digits.
Example:
myInteger = 999
formatedInteger = "00999"
What is the best way of doing this in classic ASP?
|
1
|
I need to have a string, based on an integer, which should always have 5 digits. Example:
What is the best way of doing this in classic ASP?
|
|||
|
|
|
|
You can use string manipulation functions for this. This assumes classic ASP with VBScript (original version of the answer).
Here an optimized version, wrapped in a function, offering variable width padding:
|
||||||
|
|
|
Something like this is what I've seen most of the time:
|
||
|
|
|
Really, you should ask yourself why you might want this. If this is for display purposes then it's probably best to apply a string formatting function (there will be one) to your integer, at the point of display. On the other hand, if you need it for internal processing, i.e. you're always expecting five digits in a loop or whatever, but you're not expecting to do arithmetic on the value, then convert the integer to a string first and then do any processing. In short, convert the integer variable to a string and store in a new variable, then use that. |
||
|
|
|
|
Stefan, that just gave me an error: incorrect type I've done this small function
Can I optimize it? |
|||
|
|
|
Ok, now I have 3 options: use my function, Jonathan Lonowski suggestion or use Tomalak suggestion. Which one is more optimized?? Thanks |
||||
|
|
|
Try this for a one-liner (well, two with error prevention):
|
|||
|
|