scottpeter
Programmer
I have a file in the following format:
AAA000+0032432
BBB00+0023324
CCC000+0023442
ddd000+0032424
FFF00+0023444
AAA000+0032432
CCC000+0023442
ddd000+0032424
The file should have '+' sign as the 7th character of every line. But you can see the character has shifted left by one place in some lines.
How can I shift this '+' signs to the right where it is misaligned.
Probably I can replace '+' with '0+' whenever I find + as the 6th character. Can somebody help me with how to do this.
Thanks,
Scott
AAA000+0032432
BBB00+0023324
CCC000+0023442
ddd000+0032424
FFF00+0023444
AAA000+0032432
CCC000+0023442
ddd000+0032424
The file should have '+' sign as the 7th character of every line. But you can see the character has shifted left by one place in some lines.
How can I shift this '+' signs to the right where it is misaligned.
Probably I can replace '+' with '0+' whenever I find + as the 6th character. Can somebody help me with how to do this.
Thanks,
Scott