Replace string2 by string3 where string1 is found in line


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Replace string2 by string3 where string1 is found in line
# 1  
Old 10-02-2019
sed - substitute first occurrence after search

I found this in the forum that searches a file for string1, substitute all occurrences of string2 with string3.
(Title: Replace string2 by string3 where string1 is found in line)

>> sed -i '/string1/s/string2/string3/g' TextFile

How will I perform the same sed command and only substitute string3 to the first occurrence of string2 right after the occurrence of string1 in same line?

File content:
Line contains string1 with string2 with other data on this line and another string2

Output:

Line contains string1 with string3 with other data on this line and another string2

Thanks.

Last edited by apalex; 10-03-2019 at 08:19 AM..
# 2  
Old 10-02-2019
Quote:
Substitution command "s"
In some versions of sed, the expression must be preceded by -e to indicate that an expression follows. The s stands for substitute, while the g stands for global, which means that all matching occurrences in the line would be replaced.
So removing "g" would then only replace the first occurrence.
These 2 Users Gave Thanks to jim mcnamara For This Post:
# 3  
Old 10-03-2019
Thanks!

In another example below, how about substituting string3 ONLY to the first occurrence of string2, right after the occurrence of string1? The pattern I am looking for is string1 and just need to replace only the string2 immediately after the pattern.

File content:
Line contains string2 and string1 with another string2 with other data on this line and yet another string2

Output:

Line contains string2 and string1 with another string3 with other data on this line and yet another string2
# 4  
Old 10-03-2019
To replace the 2nd string2 is easy
Code:
sed '/string1/s/string2/string3/2' TextFile

But this searches string1 throughout the line, then starts over and substitutes the 2nd string2 from the beginning of the line.
If you really want the 1st string2 after string1, then you have to include string1 into the substitution command.
I suggest perl and its minimum match. perl -pe works a bit like sed:
Code:
perl -pe 's/(string1.*?)string2/${1}string3/' TextFile

The $1 refers to what was captured in the 1st ( ) group.
The .*? is a non-greedy .* (any character any times).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find string1, when true find string2 in reverse direction

Hello, This is a bit complicated for me. My scenario in MyFile: Search string1, When string1 is found, grep the line containing string1, go back over that line in upward direction and grep the first line containing string2. Here is an example: MyFile His email address... (17 Replies)
Discussion started by: baris35
17 Replies

2. Shell Programming and Scripting

Replace string2 by string3 where string1 is found in line

Hello, My aim is to search string1 in all lines. When found, find and replace string2 by string3 if possible. TextFile: Here is my first line Second line with string1 & string2 Not last line but it contains string1 Expected output: Here is my first line The second line with string1 &... (6 Replies)
Discussion started by: baris35
6 Replies

3. UNIX for Beginners Questions & Answers

Replace string2 with string3 on all lines starting with string1

My OS is Windows 10 and I am using Cygwin. The file 1 content is: USE solution 2; -4.000 USE solution 3; -4.000 … USE solution 29; -4.000 USE solution 30; -4.000 USE solution 31; -4.000 …. USE solution 89; -4.000 ... USE solution 202; -4.000 etc... I need to replace... (8 Replies)
Discussion started by: supernono06
8 Replies

4. Shell Programming and Scripting

Read file and replace a particular line if found

Hi All There is another challenge which stand in front of me. And want all to have the experience with that I have a file in Unix say a.txt. What I was trying is to read the file line by line and matching the line to particular pattern, and if that pattern found I want to replace that line... (5 Replies)
Discussion started by: adisky123
5 Replies

5. Shell Programming and Scripting

awk - print record with both string1 and string2

How do I use awk to find the records in a file that contains two specific strings? I have tried piping and using awk two times, but I don't know how to do it in one action. (2 Replies)
Discussion started by: locoroco
2 Replies

6. Shell Programming and Scripting

Remove lines before string1 and after string2

Hello All... I have a text file (.ics) which I need to read into a variable but ONLY the part including and after 'BEGIN:VEVENT' and ending with END:VEVENT Anything before BEGIN:VEVENT or after END:VEVENT should be ignored. Thanks for input Jeff BEGIN:VCALENDAR VERSION:2.0... (3 Replies)
Discussion started by: uptimejeff
3 Replies

7. UNIX for Dummies Questions & Answers

Replace line with found unknown pattern

Hi, I have a file with the following content: --------- a 3242 tc_5 gdfg4 random text a 3242 tc_6 gdfg4 random text a 3242 tc_7 gdfg4 random text a 3242 tc_4 gdfg4 --------- I want to replace the lines containing tc_? (tc_5, tc_6 etc. even with unknown numbers) with the found... (5 Replies)
Discussion started by: joas
5 Replies

8. Shell Programming and Scripting

ps -ef | grep "string1" "string2" " "string3"

Hi all, can any one suggest me the script to grep multiple strings from ps -ef pls correct the below script . its not working/ i want to print OK if all the below process are running in my solaris system. else i want to print NOT OK. bash-3.00$ ps -ef | grep blu lscpusr 48 42 ... (11 Replies)
Discussion started by: steve2216
11 Replies

9. Shell Programming and Scripting

How to replace a line below where the pattern found

Hi All, I have a file say abc.xml. In this file, I need to search for a pattern “SAP_GATEWAY_HOST”; if this pattern found and the next line also contain the pattern “nwprc03.cos” then I need to replace this pattern “nwprc03.cos” with some other pattern “nwdrc03.apjp”. $ cat abc.xml... (3 Replies)
Discussion started by: Ritesh.patni84
3 Replies

10. UNIX for Dummies Questions & Answers

Replacing string1 with string2 in many files

I have 70 files and want to replace string1 with string2. How can i do that?. Thanks (4 Replies)
Discussion started by: shashikandi
4 Replies
Login or Register to Ask a Question