Add Delimeter,


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Add Delimeter,
# 1  
Old 03-01-2007
Add Delimeter,

I want to add the delimiter in particular positions in one txt file.

My file is :

123450000000000testing
898983920202020testfil
.
.
.

1-5 -- after 5th position add ,
6-10 -- after 10th position add ,
11-7 -- like wise..

Expecting output is:

12345,0000000000,testing
89898,3920202020,testfil
.
.
.

I have used the below script , but it is taking more timing to my 2
lak records.

#!/bin/sh
while read le
do
p1=`echo $le | awk '{ print substr($0,1,5) }'`
p2=`echo $le | awk '{ print substr($0,6,10) }'`
p3=`echo $le | awk '{ print substr($0,11,7) }'`

echo "$p1,$p2,$p3>> out.txt
done < in.txt

Is there anyother way to process the above.?
# 2  
Old 03-01-2007
Code:
sed "s/\(.\{5\}\)\(.\{10\}\)/\1,\2,/" file

# 3  
Old 03-01-2007
awk ' { print "%s,%s,%s", substr($0,1,5), substr ($0,6,10), substr($0,11,7) }' inputfile > outputfile
# 4  
Old 03-01-2007
in bash,

Code:
echo "${a:0:5},${a:6:5},${a:10:${#a}}"

# 5  
Old 03-01-2007
if you have Python, here's an alternative
Code:
#!/usr/bin/python
for line in open("file"):
  print line[0:5] + "," + line[5:15] + "," +line[15:-1]

output:
Code:
12345,0000000000,testing
89898,3920202020,testfil

# 6  
Old 03-02-2007
Thanks guys.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk with tab delimeter

Hi Team below test file contains tab delimeter file and i am excepting the number of files 3. File : test.txt a b c awk -vFPAT='\t' -vOFS="\t" -v a="0" -v b="10" ' NR>a {if (NF != b ) print NR"@"NF }' test.txt current output is 1@2 required output is 1@3 Cloud you please help... (7 Replies)
Discussion started by: bmk123
7 Replies

2. Shell Programming and Scripting

Replace every second instance of delimeter

Hi, Need help on replacing every second instance of delimeter. Scenario: var="Name1,Value1,Name2,Value2,Name3,Value3,Name4,Value" I want every second "," to replace with "|" I tried like below echo $var| sed 's/,/|/2' But, it's not working. Expected output: ... (4 Replies)
Discussion started by: Sumanthsv
4 Replies

3. Shell Programming and Scripting

awk substr delimeter

Hi All, I have an awk command that uses the substr function - At the moment I know the length of the values so can use the example below i.e substr(i,0,1) However in future these lengths may change so wondered if you can use a delimiter within a substr? Like in bash you could use cut -d ';',... (6 Replies)
Discussion started by: Ads89
6 Replies

4. Shell Programming and Scripting

Split line of file from delimeter.

I have a below file. INPUT FILE select * from customer MERGE INTO Archive; delete from Employee; using select * from customer; delete from employee; select * from Employee; insert into employee(1,1); OUTPUT FILE select * from customer MERGE INTO Archive delete from Employee using... (5 Replies)
Discussion started by: Mohin Jain
5 Replies

5. Shell Programming and Scripting

Put delimeter in data based on value

Hi Friends, I have a file as below source.txt 12345JackYKing32N 1235 JulyYoig 31N i am using cut command for cutting the fields cut -c 1-5 source.txt 12345 1235 like above i have to use each time to cut all the fieds manually. I have a file(pre.txt) which tells... (3 Replies)
Discussion started by: i150371485
3 Replies

6. Shell Programming and Scripting

Replacing the delimeter with other delimeter

Hi Friends, I have a file1.txt as below 29123973Ç2012-0529Ç35310124Ç000000000004762Ç00010Ç20Ç390ÇÇÇÇF 29123974Ç20120529Ç35310125Ç0000000000046770Ç00010Ç20Ç390ÇÇÇÇF 29123975Ç20120529Ç35310126Ç0000000000046804Ç00010Ç20Ç390ÇÇÇÇF 29123976Ç20120529Ç35310127Ç0000000000044820Ç00010Ç20Ç390ÇÇÇÇF i have a file2.txt... (4 Replies)
Discussion started by: i150371485
4 Replies

7. Shell Programming and Scripting

Attaching an end delimeter

Hi, I have a file below I want to attach an end delimeter '{}' after the time stamp input file 22113350444356|Status:Assigned,Notes: APP PRD |Sep 28 2011 12:12:55:660PM 22113350398356|Status:Assigned,Notes: APP PRD |Sep 28 2011 12:12:55:660AM 22113350621356|Status:Assigned,Notes:... (6 Replies)
Discussion started by: ratheeshjulk
6 Replies

8. Shell Programming and Scripting

Count the delimeter from a file and delete the row if delimeter count doesnt match.

I have a file containing about 5 million rows, in the file there are some records which has extra delimiter at random position. (we dont know the positions), now we have to Count the delimeter from each row and if the count of delimeter is not matching then I want to delete those rows from the... (5 Replies)
Discussion started by: Akumar1
5 Replies

9. Shell Programming and Scripting

Handling Unit Seperator Delimeter

Hi, We have a file with a unit seperator as the delimeter. Here are the Sample lines from the file: ASIA/PACIFICHong KongFX2007071080900 ASIA/PACIFICHong KongFX2007071080900/ 800129HK This delimeter has the ascii value of \037. I have to... (4 Replies)
Discussion started by: sviswana
4 Replies

10. Shell Programming and Scripting

Delimeter used in data

Blasted data inputters :mad: they always have to screw my data up....My comma delimited file with three fields ( firstname,surname and address ) has been screwed up by people entering addresses like this (putting a comma in between the house number and the street name) 142,Stonewall Avenue ... (8 Replies)
Discussion started by: hcclnoodles
8 Replies
Login or Register to Ask a Question