Jan 15, 2004 #1 smitp11 Programmer Jan 15, 2004 4 GB Hi, I need to edit a file using SED and replace a string but maintain the case of the original string. ie Change: HRP1 to HRS1 hrp1 to hrs1 HrP1 to HrS1 I can do this with multiple edit commands but wondered if there was a way of doing it in one edit command ?
Hi, I need to edit a file using SED and replace a string but maintain the case of the original string. ie Change: HRP1 to HRS1 hrp1 to hrs1 HrP1 to HrS1 I can do this with multiple edit commands but wondered if there was a way of doing it in one edit command ?
Jan 15, 2004 #2 tikual Technical User Jun 10, 2003 237 HK Try it: /[Hh|Rr].1/{ s/P1/S1/ s/p1/s1/ } tikual Upvote 0 Downvote
Jan 15, 2004 #3 tikual Technical User Jun 10, 2003 237 HK sorry for my typo: /[Hh][Rr].1/{ s/P1/S1/ s/p1/s1/ } tikual Upvote 0 Downvote
Jan 16, 2004 Thread starter #4 smitp11 Programmer Jan 15, 2004 4 GB I could not get that command to work: sed /[Hh|Rr].1/{s/P1/S1/s/p1/s1/} D:\pat.txt > D:\pat_mod.txt returns: sed: newline or end of file found in pattern The name specified is not recognized as an internal or external command, operable program or batch file. Upvote 0 Downvote
I could not get that command to work: sed /[Hh|Rr].1/{s/P1/S1/s/p1/s1/} D:\pat.txt > D:\pat_mod.txt returns: sed: newline or end of file found in pattern The name specified is not recognized as an internal or external command, operable program or batch file.
Jan 16, 2004 #5 tikual Technical User Jun 10, 2003 237 HK Try again: sed '/[Hh][Rr].1/{s/P1/S1/g;s/p1/s1/g;}' D:\pat.txt > D:\pat_mod.txt tikual Upvote 0 Downvote
Jan 16, 2004 Thread starter #6 smitp11 Programmer Jan 15, 2004 4 GB tikual, That's work a reat. Many Thanks. Second question, how would you do the same thing for: trn2452 to trn2453 TRN2452 to TRN2453 etc Regards. Upvote 0 Downvote
tikual, That's work a reat. Many Thanks. Second question, how would you do the same thing for: trn2452 to trn2453 TRN2452 to TRN2453 etc Regards.
Jan 16, 2004 #7 PHV MIS Nov 8, 2002 53,708 FR Try with this sed script: Code: '/[tT][rR][nN]2452/s/2452/2453/' Hope This Help PH. Upvote 0 Downvote
Jan 16, 2004 #8 tikual Technical User Jun 10, 2003 237 HK Try it: sed '/TRN[0-9]*2/{s/\(TRN[0-9]*\)2/\13/g;};/trn[0-9]*2/{s/\(trn[0-9]*\)2/\13/g;}' yourfile tikual Upvote 0 Downvote
Try it: sed '/TRN[0-9]*2/{s/\(TRN[0-9]*\)2/\13/g;};/trn[0-9]*2/{s/\(trn[0-9]*\)2/\13/g;}' yourfile tikual
Jan 16, 2004 #9 aigles Technical User Sep 20, 2001 464 FR You can also do : sed -e 's/\([tT][rR][nN]\)2452/\12453/' input >output Jean Pierre. Upvote 0 Downvote
Jan 16, 2004 Thread starter #10 smitp11 Programmer Jan 15, 2004 4 GB Thanks for your help. I used the post from tikual for my first question and the post from PHV for my second question. Regards. Upvote 0 Downvote
Thanks for your help. I used the post from tikual for my first question and the post from PHV for my second question. Regards.