Use regex in replacement string in SED


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Use regex in replacement string in SED
# 1  
Old 02-07-2012
Use regex in replacement string in SED

Hi,

I need to use the regex in the replacement string in SED command.
something like

Code:
sed -e ' s/\(^[A-Z]\{5\}\).\{150\}\(.*\)$/\10\{30\}1\{30\}A\{60\}B\{30\}\2/' abc

which means for all the lines in file abc that starts with 5 characters, I need to replace character 6-151 with...

Code:
*   30 occurances of '0'
*   30 occurances of '1'
*   60 Occurances of 'A'
*   30 occurances of 'B'

but, they are getting replaced with the hardcoded characters 0\{30\}1\{30\}A\{60\}B\{30\} instead. So how can I start using regex in the replacement string of SED command?

Thanx in advance

Last edited by Franklin52; 02-23-2012 at 04:24 AM.. Reason: Please use code tags for code and data samples, thank you
# 2  
Old 02-07-2012
Hi snowline84,

It is possible using sed, but there are better tools. Are you stuck with it?

See what an ugly script:
Code:
$ sed '
  1 { 
    x; 
    s/^.*$/00000000001111111111AAAAAAAAAABBBBBBBBBB/; 
    s/\(0\+\)\(1\+\)\(A\+\)\(B\+\)/\1\1\1\2\2\2\3\3\3\3\3\3\4\4\4/; 
    x 
  }; 
  /^\([A-Z]\{5\}\)/ { 
    G; 
    s/^\([A-Z]\{5\}\).\{150\}\(.*\)\n\(.*\)$/\1\3\2/ 
  }
' inputfile

Regards,
Birei
# 3  
Old 02-07-2012
Can you provide a more specific and desired output...

--ahamed
# 4  
Old 02-07-2012
Hi Ahmed,

I need to supress the information present in a file so, need to override specific 151 characters.
I usually use SED for my commands Smilie but didn't want to fire something this ugly

Code:
sed -e ' s/\(^[A-Z]\{5\}\).\{150\}\(.*\)$/\1000000000000000000000000000000111111111111111111111111111111AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBBBBBBBBBBBBB\2/' abc > test

there must be a better way to do it.

Thanks

Last edited by Franklin52; 02-23-2012 at 04:24 AM.. Reason: Please use code tags for code and data samples, thank you
# 5  
Old 02-22-2012
HI Birei,

What other options do you suggest to achieve the same?
# 6  
Old 02-23-2012
Maybe Perl which has the repetition operator x.
Code:
perl -lne '$_ =~ s/(^[A-Z]{5}).{150}(.*)/$1 . '0' x30 . '1' x30 . 'A' x60 . 'B' x30 . $2/e; print' inputfile

If you want only with Sed then store the replacement values in a variable and use that variable in the Sed replacement part.
# 7  
Old 02-23-2012
Code:
v=$(echo '01AAB' | sed 's/./&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/g')
sed "s/^\([A-Z]\{5\}\).\{150\}/\1$v/" infile

Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sed, Inline replacement of string with spaces

Hello, Just surfed on the web for probable answers but could not get them working. I wish to replace the string containing spaces by another phrase but below answers did not work. My string is: PAIN & GAIN I wish to convert it to: P&G I just need it working with sed with function -i ... (6 Replies)
Discussion started by: baris35
6 Replies

2. Shell Programming and Scripting

Sed: how to use file contents in replacement string

I want to replace a string by contents of file. I am trying the following sed command: cat sample | sed "s^<enter description here>^`cat details`^" But it is not working. a=`cat details` and using $a will not help since it will affect the whitespaces. What am I missing in the above sed... (5 Replies)
Discussion started by: anand_bh
5 Replies

3. Shell Programming and Scripting

Recursive replacement of search string using sed

Dear Unix Forum Group Members, Please do let me know how I can replace the double pipe with single pipe recursively on single record. Sample Input Data: DN set|Call prefix||| Called number address nature 0||| *789|||||||ALL number types 0||| 00||||||||ALL number types 10||... (5 Replies)
Discussion started by: srinu.kadem
5 Replies

4. Shell Programming and Scripting

sed regex backreference replacement

Hello, I want to rename multiple files and catch some points about backreference within sed and regex. Here is a part of my file list. Input: S92A.fa S92B.fa ... S96Z.fa S921.fa S922.fa ... S997.fa Note: The file names are not necessarily continuous from A~Z or 921 ~ 997, as some of the... (3 Replies)
Discussion started by: yifangt
3 Replies

5. UNIX for Dummies Questions & Answers

sed string replacement question

Hey everybody. I've got a simple problem but am unsure how to resolve it. I am using a script to edit multiple files at once. Inside the script I am using an sed command to make the changes. My problem is that I can only get it to work for stings that contain a word or words. How can I modify it to... (1 Reply)
Discussion started by: iwatk003
1 Replies

6. Shell Programming and Scripting

Bash string replacement - how to use regex?

Hello I have a bash script where I need to do a substring replacement like this: variable2=${variable1/foo/bar} However, I only want "foo" replaced if it is at the end of the line. However, this does not work: variable2=${variable1/foo$/bar} as you can see I'm using the $ regex for... (2 Replies)
Discussion started by: Ubuntu-UK
2 Replies

7. Shell Programming and Scripting

Exact String replacement with sed

Hi, What should be the syntax to match and replace an exact string using sed? And not replacing any string that contain the value? Eg. testtest etstetst testetst testtttt etsttest testtesttest testtest I only want to replace the line with exact string "testtest" with "123456" ... (2 Replies)
Discussion started by: srage
2 Replies

8. Shell Programming and Scripting

SED complex string replacement

sed -i 's:"ps -ef | grep $(cat $PID_FILE) | grep -v grep":"ps -C java -o pid,cmd | grep ${SERVER_NAME} | cut -d' ' -f1 | grep -v grep":g' scriptName That's what I'm attempting to do. I'm attempting to replace this: ps -ef | grep $(cat $PID_FILE) | grep -v grep with this: ps -C java -o... (5 Replies)
Discussion started by: cbo0485
5 Replies

9. Shell Programming and Scripting

String replacement using sed

I need to search and replace a particular string in a file. Only the exact match of the string should be replaced. eg: File contents : abc abcd abcdef --> Replace only 'abc' with 'xyz', but it should not replace abcd with xyzd. So the o/p should be: xyz abcd abcdef. How can this be done? I... (5 Replies)
Discussion started by: sngk
5 Replies

10. Shell Programming and Scripting

sed problem - replacement string should be same length as matching string.

Hi guys, I hope you can help me with my problem. I have a text file that contains lines like this: 78 ANGELO -809.05 79 ANGELO2 -5,000.06 I need to find all occurences of amounts that are negative and replace them with x's 78 ANGELO xxxxxxx 79... (4 Replies)
Discussion started by: amangeles
4 Replies
Login or Register to Ask a Question