I think it should work just the same way as standard C:
StrPrintF(temp, "the length of temp is : %06d", StrLen(temp));
-- Keith
"Charles Rezsonya" <[EMAIL PROTECTED]> on 11/23/99 01:34:57 PM
Please respond to [EMAIL PROTECTED]
Sent by: "Charles Rezsonya" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
cc: (Keith Rollin/HQ/3Com)
Subject: StrPrintF
when using StrPrinfF, i found using this option
StrPrintF(temp, "the length of temp is : %6d", StrLen(temp));
which shows "the length of temp is : 121"
but i can't figure out how to substitute the ' ' (space) for my own
character. ie, i want it to be padded with
0's instead "ie, 000121")
anyone know how to do this?