Hi folks,
I need to automatically format several strings in a way that every leading "0" is being replaced by a " " (blank)...
Any idea how I could do this ?
The strings could look like this:
And they're supposed to look like this after being formatted:
It is important to have the blanks because each string is supposed to be a 15 character field that's being read by another programm ...
Regards
Thomas
I need to automatically format several strings in a way that every leading "0" is being replaced by a " " (blank)...
Any idea how I could do this ?
The strings could look like this:
Code:
000000000028302
000000028372022
000018000290000
And they're supposed to look like this after being formatted:
Code:
28302
28372022
18000290000
It is important to have the blanks because each string is supposed to be a 15 character field that's being read by another programm ...
Regards
Thomas