Help with script to convert rows to columns


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with script to convert rows to columns
# 1  
Old 05-20-2018
Help with script to convert rows to columns

Hello
I have a large database with the following structure:
Code:
Headword=Gloss1;Gloss2;Gloss3

The Glosses are separated by a
Code:
;

What I need is to reduce the multiple glosses on each row to columns
Code:
Headword=Gloss1
Headword=Gloss2
Headword=Gloss3

I had written the following script in awk to do the job
Code:
BEGIN{FS="="}
{for (i=2;i<=NF;i++) {printf $1"=";print $i}}

However it does not provide the necessary result. I wonder where the awk script has gone wrong
A small sample is appended below for testing
Code:
آءٌ=आउ;आउं
آئيني=आईनी;आईने
آئيووا=आइओवा;आईओवा
آئيويٽا=आइवेटा;आईवेटा
آئيِندَهَه=आईंद;आईंदा
آئُٽو=आउट;आउटो
آئڙي=आईड़ी;आउड़े
آئڙيو=आईड़ियो;आउड़ियो
آئڙڻ=आउड़ण;आउड़णु
آب=आब;आबि;आबु
آباد=आबा;आबाद;आबादु
آبادءَ=आबादअ;आबादीअ;आबादुअ
آبادُ=आबाद;आबादु
آبادِي=आबादिय;आबादी
آبدارُ=आबदार;आबदारु
آبروءَ=आबरूअ
آبشار=आबशार;आबशारु
آبشارُ=आबशार;आबशारु
آبنوُسُ=आबनूस;आबनूसु
آبوهڻ=आबोहण;आबोहणु
آبي=आबी;आबे
آبِ=आबि;आबे
آبڪلاني=आबकलानी;आबेकलानी
آت=आत;आतु
آتاري=आतारी;आतारे
آتارڻ=आतारण;आतारणु
آتارڻُ=आतारण;आतारणु
آتسباجي=आतसबाजी;आतस्बाजी
آتشبازيءَ=आतशबाज़ीअ;आतिशबाज़ीअ
آتشِ=आतशि;आतिशि
آتم=आत्म
آتي=आत;आती;आते
آتين=आतियुनि;आतीं
آتَڻُ=आतण;आतणु
آتُ=आत;आतु
آتڻ=आतण;आतणु
آتڻُ=आतण;आतणु
آثار=आसार;आसारु
آثارُ=आसार;आसारु
آج=आज;आजु
آجارُ=आजार;आजारु
آجي=आज;आजी;आजे

Please note that it is possible that headword in the database may map to a single gloss as in
Code:
آتم=आत्म

Many thanks in advance
# 2  
Old 05-20-2018
You weren't too far off. Try FS="[;=]".
This User Gave Thanks to RudiC For This Post:
# 3  
Old 05-20-2018
Thanks a lot. It worked
How stupid of me!!!
# 4  
Old 05-20-2018
Note that although your printf happens to work with the data you're using, it is dangerous to assume that no characters in data you're printing will ever be interpreted as format string control characters. You might want to consider one of the following as an alternative to your current code:
Code:
BEGIN {	FS = "[=;]"
}
{	for(i = 2; i <= NF; i++)
		printf("%s=%s\n", $1, $i)
}

or:
Code:
BEGIN {	FS = "[=;]"
	OFS = "="
}
{	for(i = 2; i <= NF; i++)
		print $1, $i
}

or:
Code:
BEGIN {	FS = "[=;]"
}
{	for(i = 2; i <= NF; i++)
		print $1 "=" $i
}

These 2 Users Gave Thanks to Don Cragun For This Post:
# 5  
Old 05-20-2018
Many thanks for the warning. The solutions you have provided are elegant and will ensure data integrity.
I tested all three and the results are excellent.
Thanks for taking time off to write these little gems.
# 6  
Old 05-31-2018
Just as a different perspective, if it is in the database, can you not use SQL for the task too?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert rows to columns

hi folks, I have a sample data like what is shown below: 1,ID=1000 1,Org=CedarparkHospital 1,cn=john 1,sn=doe 1,uid=User001 2,uid=User002 2,ID=2000 2,cn=steve 2,sn=jobs 2,Org=Providence I would like to convert it into the below format: 1,1000,CedarparkHospital,john,doe,User001... (11 Replies)
Discussion started by: vskr72
11 Replies

2. Shell Programming and Scripting

Shell script to convert rows to columns

Hi I have a file having the values like below ---------------------------- .set A col1=”ABC” col2=34 col3=”DEF” col4=”LMN” col5=25 .set A .set B col1=55 col3=”XYZ” col4=”PQR” col5=66 .set B .set C col2=”NNN” (1 Reply)
Discussion started by: Suneel Mekala
1 Replies

3. Shell Programming and Scripting

Convert Rows to Columns

Hi Everyone, Could someone shed some lights on how to convert the records in rows form into column basis. 172.29.59.12 IBM,8255-E8B 102691P 8 65536 MB 6100-04-11-1140 172.29.59.15 IBM,8255-E8B 102698P 4 45056 MB 6100-04-11-1140 IP SYS MODEL ... (6 Replies)
Discussion started by: ckwan
6 Replies

4. Shell Programming and Scripting

How to Convert rows in to columns?

Hi Gurus, How to convert rows in to columns using linux shell scripting Input is like (sample.txt) ABC DEF GHI JKL MNO PQR STU VWX YZA BCD output should be (sampleoutput.csv) ABC,DEF,GHI,JKL,MNO PQR,STU,VWX,YZA,BCD (2 Replies)
Discussion started by: infasriniit
2 Replies

5. Shell Programming and Scripting

Convert few columns to rows

Hi! Does anybody help me in converting following data: INPUT looks like this: 20. 100. 30 200. 40. 400. 50. 100. 60. 200. 70. 400. 80. 200. 150. 210. 30. 100. OUTPUT should look like this: 20. 100. 30 200. 40. 400. 50. 100. 60. 200. 70.... (5 Replies)
Discussion started by: lovelinux
5 Replies

6. Shell Programming and Scripting

Convert columns to rows in perl script

Hi All I want to have a Perl script which convert columns to rows. The Perl should should read the data from input file. Suppose the input file is 7215484 date to date 173.3 A 1.50 2.23 8.45 10.14 2.00 4.50 2.50 31.32 7216154 month to month (3 Replies)
Discussion started by: parthmittal2007
3 Replies

7. Shell Programming and Scripting

convert columns into rows

hi, Apologies if this has been covered. I have requirement where i have to convert a single column into multiple column. My data will be like this - 2 3 4 5 6 Output required - 2 3 4 5 6 (1 Reply)
Discussion started by: Nishithinfy
1 Replies

8. Shell Programming and Scripting

convert rows into columns

Hi guys Could anyone advise me how to convert my rows into columns from a file My file would be similar to this: A11 A12 A13 A14 A15 ... A1n A21 A22 A23 A31 A41 A51 ... Am1 Am2 Am3 Am4 Am5 ... Amn The number of rows is not the same to the number of columns Thanks in advance (2 Replies)
Discussion started by: loperam
2 Replies

9. Shell Programming and Scripting

how to convert columns to rows

Hi, I need a shell script for below requirement Input file P1 - 173310 P2 - 173476 P3 - 173230 P4 - 172737 P1 - 173546 P2 - 173765 P3 - 173876 P4 - 172989 Out put file P1 173310 173546 P2 173476 173765 P3 173230 173876 P4 172737 172989 Suresh (6 Replies)
Discussion started by: suresh3566
6 Replies

10. Shell Programming and Scripting

shell script required to convert rows to columns

Hi Friends, I have a log file as below siteid = HYD spc = 100 rset = RS_D_M siteid = DEL spc = 200 rset = RS_K_L siteid = DEL2 spc = 210 rset = RS_D_M Now I need a output like column wise as below. siteid SPC rset HYD 100 RS_D_M (2 Replies)
Discussion started by: suresh3566
2 Replies
Login or Register to Ask a Question