J
joriveek
Hi,
I want to print a string with defined width left trailed; How can I do
this?
Example: Print ("%05d%3s", &test1, test2);
say test1 = 23
test2 = Hi
It prints like 1 2 3 4 5 6 7 8
0 0 0 2 3 H i
But I want like this:
It prints like 1 2 3 4 5 6 7 8
0 0 0 2 3 H i
How can I do this?
Thanks
I want to print a string with defined width left trailed; How can I do
this?
Example: Print ("%05d%3s", &test1, test2);
say test1 = 23
test2 = Hi
It prints like 1 2 3 4 5 6 7 8
0 0 0 2 3 H i
But I want like this:
It prints like 1 2 3 4 5 6 7 8
0 0 0 2 3 H i
How can I do this?
Thanks