SED - replace only on part of the string


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SED - replace only on part of the string
# 8  
Old 01-14-2012
See if awk works for you:
Code:
awk -F\) '{gsub(/,/,"|",$1)}1' RS=\( ORS=\( OFS=\)

Quote:
Originally Posted by Shell_Life
Extracted from the 'sed' book:
\b is not standard sed, but GNU sed only
This User Gave Thanks to Scrutinizer For This Post:
# 9  
Old 01-14-2012
Quote:
Originally Posted by Scrutinizer
See if awk works for you:
Code:
awk -F\) '{gsub(/,/,"|",$1)}1' RS=\( ORS=\( OFS=\)

It works !

But I don't understand all the parts.

First I do some change so that it's easier to understand :
Code:
awk '{gsub(",","|",$1)}1' FS=\) RS=\( OFS=\) ORS=\(

Well I understand that we separate each record with '(' and each field with ')'.
So in the first field of each record we are sure that all comma must be replaced by pipe.

But I don't understand the '1' in {gsub(",","|",$1)}1


_________________________________________________________________________________
EDIT

In fact there is one thing to fix : if the last character of a line is not a ')', the next line is merged :
Code:
$ cat file
PARMA1=('VAL11'),PARMA2=(VAL21 ), PARMA3= VAL31 ,PARMA4= VAL41 ,PARMA5 = 'VAL51',PARMA6=(VAL61)
PARMB1=('VAL11'),PARMB2=(VAL21 , VAL22,VAL23), PARMB3= VAL31 ,PARMB4=(VAL41,VAL42),PARMB5 = 'VAL51',PARMB6=(VAL61)
PARMC1=('VAL11'),PARMC2=(VAL21 ), PARMC3= VAL31 ,PARMC4= VAL41 ,PARMC5 = 'VAL51',PARMC6=(VAL61)
PARMD1=('VAL11'),PARMD2=(VAL21 , VAL22,VAL23), PARMD3= VAL31 ,PARMD4=(VAL41,VAL42),PARMD5 = 'VAL51',PARMD6='VAL61'
PARME1=('VAL11'),PARME2=(VAL21 ), PARME3= VAL31 ,PARME4= VAL41 ,PARME5 = 'VAL51',PARME6=(VAL61)

$ cat file | awk '{gsub(",","|",$1)}1' FS=\) RS=\( OFS=\) ORS=\(
PARMA1=('VAL11'),PARMA2=(VAL21 ), PARMA3= VAL31 ,PARMA4= VAL41 ,PARMA5 = 'VAL51',PARMA6=(VAL61)
PARMB1=('VAL11'),PARMB2=(VAL21 | VAL22|VAL23), PARMB3= VAL31 ,PARMB4=(VAL41|VAL42),PARMB5 = 'VAL51',PARMB6=(VAL61)
PARMC1=('VAL11'),PARMC2=(VAL21 ), PARMC3= VAL31 ,PARMC4= VAL41 ,PARMC5 = 'VAL51',PARMC6=(VAL61)
PARMD1=('VAL11'),PARMD2=(VAL21 | VAL22|VAL23), PARMD3= VAL31 ,PARMD4=(VAL41|VAL42),PARMD5 = 'VAL51',PARMD6='VAL61')PARME1=('VAL11'),PARME2=(VAL21 ),.........

Sephi.

Last edited by Sephiburp; 01-14-2012 at 06:15 AM..
# 10  
Old 01-14-2012
Hi, 1 effectuates "print record". A value of 1 outside the brackets makes awk invoke the default action, which is {print $0}.

Strange I cannot reproduce this effect. I get:

Code:
PARMA1=('VAL11'),PARMA2=(VAL21 ), PARMA3= VAL31 ,PARMA4= VAL41 ,PARMA5 = 'VAL51',PARMA6=(VAL61)
PARMB1=('VAL11'),PARMB2=(VAL21 | VAL22|VAL23), PARMB3= VAL31 ,PARMB4=(VAL41|VAL42),PARMB5 = 'VAL51',PARMB6=(VAL61)
PARMC1=('VAL11'),PARMC2=(VAL21 ), PARMC3= VAL31 ,PARMC4= VAL41 ,PARMC5 = 'VAL51',PARMC6=(VAL61)
PARMD1=('VAL11'),PARMD2=(VAL21 | VAL22|VAL23), PARMD3= VAL31 ,PARMD4=(VAL41|VAL42),PARMD5 = 'VAL51',PARMD6='VAL61'
PARME1=('VAL11'),PARME2=(VAL21 ), PARME3= VAL31 ,PARME4= VAL41 ,PARME5 = 'VAL51',PARME6=(VAL61)

Are you on Solaris? If so use nawk or /usr/xpg4/bin/awk
This User Gave Thanks to Scrutinizer For This Post:
# 11  
Old 01-14-2012
I'm on Linux Suse.
I tried with nawk but it's the same result.
Then I tried with gawk and it works ! Smilie
Thank you.

Sephi.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to replace part of string?

Hi Gurus, I need to replace part of string in file, the string format is below: I can use ABCD to find string, then replace values after "=" sign ABCD_XXX=value ABCD_YYY=value after replace ABCD_XXX=new_value ABCD_YYY=new_value my OS is SunOS 5.10 Generic_150400-64 sun4v sparc sun4v ... (9 Replies)
Discussion started by: green_k
9 Replies

2. Shell Programming and Scripting

sed - How to replace right part of equal sign (=) on a line

Hello. Using a bash script , I have a variable name for the file I want to modify FILE_TO_EDIT="/etc/my_config_file"And I have a variable name for the parameter to change PARAMETER="fallback_node" PARAMETER_NEW_VALUE="http://my_server_name.com/new_path" A config file may contain : 1°)... (2 Replies)
Discussion started by: jcdole
2 Replies

3. Shell Programming and Scripting

sed or awk command to replace a string pattern with another string based on position of this string

here is what i want to achieve... consider a file contains below contents. the file size is large about 60mb cat dump.sql INSERT INTO `table1` (`id`, `action`, `date`, `descrip`, `lastModified`) VALUES (1,'Change','2011-05-05 00:00:00','Account Updated','2012-02-10... (10 Replies)
Discussion started by: vivek d r
10 Replies

4. Shell Programming and Scripting

Replace a part of the string

Hi I need to Replace a part of string in between one complete string. For e.g.. in the file the value is as: jobnm_$code_xyz_001 In script we are having a variable code=$3, where $3=ab final output should be jobnm_ab_xyz_001. But it is not working. Your help will be... (1 Reply)
Discussion started by: vee_789
1 Replies

5. Shell Programming and Scripting

How to find the count and replace the particular part of string in perl?

Hi, I am taking the current time using localtime function in perl. For example if the time is: #Using localtime $time = "12:3:10"; I have to replace the value 3 (03) i.e second position to be 03. The output should be: 12:03:10 But if the other string for example: $str:... (1 Reply)
Discussion started by: vanitham
1 Replies

6. UNIX for Dummies Questions & Answers

Seach for part of string and replace whole word

I am trying to find words in a text with a certain ending with sed and replace them with themselves but wrapped in tabs ex.: The fish swims in the water. -> searching for -ms ending The fish <tab>swims<tab>in the water. I've been trying all sorts of commands and get either an error... (5 Replies)
Discussion started by: stinnes
5 Replies

7. Shell Programming and Scripting

Replace part of a line with sed/awk

Hello I have a document and in this document I have several occurrence of "VAR == xxxxxxx" and xxxxx can be anything. I don't know what it is. I want to replace the 'xxxxx's with something I know. What I know however, is the line numbers of the VAR =='s in the file. How can I replace... (1 Reply)
Discussion started by: alirezan
1 Replies

8. UNIX for Dummies Questions & Answers

replace part of single string in a file

hi! i have a file consisting of the following lines: (BTW, = space) . . . 12ME_T1mapping_flip30bshortf 13DCE_whole_brainbshortf 13DCE_3Dbshortf . . . the list of scans starts at 1 and goes on sometimes up to 60 scans. i would like to change only the lines that contain 'whole' to... (2 Replies)
Discussion started by: nixjennings
2 Replies

9. UNIX for Dummies Questions & Answers

regarding replace a part of a string

hi all. i have a file name like abcd_vbnh.a_p i have to copy it as abcd_vbnh.a every time... in unix not in perl please (7 Replies)
Discussion started by: madhu_aqua14
7 Replies

10. Shell Programming and Scripting

using sed to replace a part of string

Hi, I have files that are named front1.txt to front999.txt. They are all in the same directory. To change "front" to "back", I am doing something like this. for file in *.txt; do new=`echo $file | sed 's/^**/back/g'` mv $file $new done My problem is what if files are named... (6 Replies)
Discussion started by: csejl
6 Replies
Login or Register to Ask a Question