Trim leading zeros to make field 6 characters long


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Trim leading zeros to make field 6 characters long
# 1  
Old 07-06-2009
Question Trim leading zeros to make field 6 characters long

Hi all-

I've got a file that will have multiple columns. In one column there will be a string that is 10 digits in length, but I need to trim the first four zeros to make it 6 characters?

example:
0000001234
0000123456
0000234566
0000000321

output:
001234
123456
234566
000321
# 2  
Old 07-06-2009
What scripting langauge are you using to process the file?
# 3  
Old 07-06-2009
Try this,

sed 's/^....//g' <Filename>
# 4  
Old 07-06-2009
I actually figured it out on my own ---

In case anyone has questions:

using korn shell

i just looped through with this: (the column is the third in the file)

while [ $i -le $recordcount ]; do
Current=`sed -n "$i p" $File | awk '{print substr($3,length($3)-5,6)}'`
i=$((i+1))
done

since I 'm also doing some other processing individually on each field this worked for me....
# 5  
Old 07-06-2009
Quote:
Originally Posted by Cailet
I actually figured it out on my own ---

In case anyone has questions:

using korn shell

i just looped through with this: (the column is the third in the file)

while [ $i -le $recordcount ]; do
Current=`sed -n "$i p" $File | awk '{print substr($3,length($3)-5,6)}'`
i=$((i+1))
done

since I 'm also doing some other processing individually on each field this worked for me....
you don't to use that many constructs to trim 4 zeroes.
Code:
awk '{gsub(/^0000/,"")}1' file

# 6  
Old 07-06-2009
another option is to use perl unpack/unpack to process fixed-width-format string.

Code:
while(<DATA>){
	my($a,$b)=unpack('A4A6',$_);
	print $b,"\n";
}
__DATA__
0000001234
0000123456
0000234566
0000000321

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove leading zeros separated by pipe

I have a below file and I wanted to remove the leading zeros in each field separated by pipe File: 01/09/2017|2017/09/06|2017/02/06|02/06/2017|02/06/2017 06:50:06 AM|2017/02/06|02/06/2017|02/07/2017 05:45:06 AM| 02/08/2017|2017/08/06|2017/09/06|02/05/2017|02/07/2017 05:40:06... (4 Replies)
Discussion started by: Joselouis
4 Replies

2. Shell Programming and Scripting

Help deleting leading zeros in a file

I have a list of numbers extracted and need to delete the leading zeros from them, but when i do so, the command I am using also deletes numbers that end in Zero as well. eg 10, 20, 30, etc this is part of a larger script and the only way I can think of is to try and detect the 10,20 30 etc in... (19 Replies)
Discussion started by: kcpoole
19 Replies

3. Shell Programming and Scripting

Numbers with leading zeros

Hi, i have a variable which conatins values like 00001,0003,00067,00459. I want to use the values one by one and in the same form as they are like 00001,0003,00067,00459. Also can anyone tell me how to increment those numbers by 1,keeping the format as same like 00002,0004,00068,00460.... (5 Replies)
Discussion started by: arijitsaha
5 Replies

4. Shell Programming and Scripting

Help with adding leading zeros to a filename

Hi i need help in adding leading zero to filenames e.g file name in my folder are 1_234sd.txt 23_234sd.txt the output i need is 001_234sd.txt 023_234sd.txt can i do this shell scripting please help (2 Replies)
Discussion started by: rsmpk
2 Replies

5. UNIX for Dummies Questions & Answers

Triml leading zeros in unix

Hi All, How does one trim leading zero's in unix Thanks KP. (7 Replies)
Discussion started by: kingofprussia
7 Replies

6. Shell Programming and Scripting

Help needed in padding leading zeros

Hi all, I have file with numeric values. I need to pad each value with leading zeros such that total lenght of each value is 16. Example: cat tmp.txt 502455 50255 5026 5027 5028 Output 0000000000502455 0000000000050255 0000000000005026 0000000000005027 0000000000005028 Any... (12 Replies)
Discussion started by: jakSun8
12 Replies

7. Shell Programming and Scripting

Removing leading zeros from a variable

How do I remove or add leading zeroa from a variable. To make variable 10 characters long when adding zeros. (6 Replies)
Discussion started by: toshidas2000
6 Replies

8. Shell Programming and Scripting

How to trim the leading zeroes in a Currency field ?

How do I trim the leading zeroes, and (+,-) in the currency field ? I have a text file. Your bill of +00002780.96 for a/c no. 25287324 is due on 11-06. Your bill of +00422270.48 for a/c no. 28931373 is due on 11-06. I want the O/P file to be like. Your bill of 2780.96 for a/c no. 25287324... (22 Replies)
Discussion started by: Amruta Pitkar
22 Replies

9. Shell Programming and Scripting

how to retain leading zeros

Hi All, I am working with a fixed width file Forrmat. C1 Number (10,3) C2 Number (10,3) e.g. c1= 0000000100.000 c2= 0000000020.000 0000000100.0000000000020.000 I have to perform c1 - c2 . i.e. I want answer to be 0000000080.000. but I am loosing the leading zeros( only getting... (3 Replies)
Discussion started by: Manish Jha
3 Replies

10. Shell Programming and Scripting

Leading zeros

How to insert leading zeros into a left-justisfied zip code? e.g. Zip code is written as 60320 which is left-justified to make it be read as 0060320. We have to move it to right-justifiable then insert 2 leading zeros into it... ;) (1 Reply)
Discussion started by: wtofu
1 Replies
Login or Register to Ask a Question