Help with sed substitution


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help with sed substitution
# 8  
Old 12-12-2009
Again, very hypothetical since the OP did not specify this and the field names are well known so you only use the level of accuracy that is required. Why do you use g (which introduces inaccuracy) when you can just use 1 and 2 to change the field you want in the previous examples.

If you insist on using g to do a global replace and if you also have similarly named fields you just need to be more precise to make a distinction, then use e.g.
Code:
echo $line|sed 's/\b\(tcolor=\)[^|]*/\1blue/g'
Boston|tcolor=blue|desc=Large city in New England|url=www.boston.com|setcolor=green

Likewise you do not have to agree with me, but this regex is easy, not complex, and quickly crafted so I do not think it is accurate to talk about wasting time. And IMO it certainly is not as black and white as you put it. I appreciate the discussion though.

Last edited by Scrutinizer; 12-12-2009 at 05:06 AM..
# 9  
Old 12-12-2009
Quote:
Originally Posted by Scrutinizer
Likewise you do not have to agree with me, but this regex is easy, not complex, and quickly crafted so I do not think it is accurate to talk about wasting time.
its easy to you and me, but not to a newbie.
# 10  
Old 12-12-2009
..., who nonetheless managed:
Code:
I figured out: sed 's/tcolor=.*|/tcolor=blue|/'

and all I did was replace . with [^|] to make it non-greedy enough for this application.
# 11  
Old 12-12-2009
Quote:
Originally Posted by Scrutinizer
Who nonetheless managed:
Code:
I figured out: sed 's/tcolor=.*|/tcolor=blue|/'

and all I did was replace . with [^|] to make it greedy enough for this application.
yes , but he still hit a snag and had to figure out how to solve greediness. and that's why i suggest not using regex for such a task, where fields are clearly delimited by "|" and he can just go split the string on "|", go through them, check for "tcolor" and change it. there's no need to create regex (and on top of that, take care of greediness ) for that simple task. Sometimes, things can be done simple.
# 12  
Old 12-12-2009
Quote:
Originally Posted by ghostdog74
yes , but he still hit a snag and had to figure out how to solve greediness. and that's why i suggest not using regex for such a task, where fields are clearly delimited by "|" and he can just go split the string on "|", go through them, check for "tcolor" and change it. there's no need to create regex (and on top of that, take care of greediness ) for that simple task. Sometimes, things can be done simple.
Well for that snag I offered a simple solution. Besides I could just as well say:

Code:
awk -F"|" '{for(i=1;i<=NF;i++){if($i~/^tcolor/){$i="tocolor=blue"}};print  }' OFS="|"

may be simple to you and me, but not to a newbie Smilie ( do I spot a tiny bit of regex in there BTW? )

Last edited by Scrutinizer; 12-12-2009 at 05:59 AM..
# 13  
Old 12-12-2009
Quote:
Originally Posted by Scrutinizer
Well for that snag I offered e a solution. Besides I could just as well say:

Code:
' OFS="|"

may be simple to you, but not to a newbie Smilie
maybe or maybe not, BUT that newbie should already know what are for loops, , if/else constructs, and since in this case, OP already know a bit of regex, he should be able to guess what is "~" as well.... combining all these bits and pieces, a newbie can roughly guess what its doing.

Code:
awk -F"|" '{ 
      for( i=1;i<=NF;i++} { 
          if( $i~/^tcolor/) { 
            $i="tocolor=blue"
          }
      };
       print  
}' OFS="|" file

anyway, we are going OT so have a gd weekend.
# 14  
Old 12-12-2009
Yes OT and good weekend to you too but by your criterion I think then you should likewise use:
Code:
 $i~/^tcolor=/)

to make your regex non-greedy enough. Smilie

Last edited by Scrutinizer; 12-12-2009 at 06:04 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed substitution

Hi everyone, I need very simple sed command to change a parameter in a text file. I have a line in this text which is like set xx 0.5 A program reads this file and does some algebraic calculations. So to make a parameter scan I need to change the value of xx. I thought I can do... (7 Replies)
Discussion started by: hayreter
7 Replies

2. UNIX for Dummies Questions & Answers

sed substitution

How can you use sed with a line of code that reads: 67899:Bill:Williams:Maple Dr.:45908600 Let us say we want to replace Maple Dr. with Oak St. (1 Reply)
Discussion started by: yonkers062986
1 Replies

3. Shell Programming and Scripting

sed substitution

Hello, I have two files. File1 is normal txt file and File2 contains list of line numbers. e.g. File2: 3 6 9 ..... I need to replace a character in File1 in lines (taken from File2). For that I am using a "for" loop: for i in $(cat File2) do sed "$i s/Y/N/" File1 done but my... (3 Replies)
Discussion started by: shekhar2010us
3 Replies

4. Shell Programming and Scripting

Substitution with sed

I have a file with some numbers having single quotes around them which I want to remove. i.e. '923930' -> 23930 If it can be done without using sed thats fine. I have tried with sed but can't think how to replace this pattern on only the numbers (13 Replies)
Discussion started by: user_invalid
13 Replies

5. Shell Programming and Scripting

sed substitution

Hi I am trying to do a text insertion in a text file at a particular line number in a shell script. However its not working. sed '122i\ > for j in \`echo $MyList\` ; do perl -pi -e\'s#01\/01\/2009#01\/01\/2011#\' $j ; done' $HOME/MyScript.ksh The Actual line to be inserted at line 122... (5 Replies)
Discussion started by: som.nitk
5 Replies

6. Shell Programming and Scripting

SED Substitution

Hi guys, Can u please help me to replace (-) with (/) in a file containing no of records using "sed " command in unix. thanks in advance. subhendu (5 Replies)
Discussion started by: subhendu81
5 Replies

7. Shell Programming and Scripting

SED Substitution

Hi , I am stuck up in the below scenario:- I need to read a file name (eg A.txt) name frm another file (eg B.txt) and then I need to search for a particular expression in A.txt and substitute it with another expression. How can I use SED inside SHELL Scripting and command prompt as well to... (1 Reply)
Discussion started by: shubhranshu
1 Replies

8. Shell Programming and Scripting

Substitution using SED

Hi , I am stuck up in the below scenario:- I need to read a file name (eg A.txt) name frm another file (eg B.txt) and then I need to search for a particular expression in A.txt and substitute it with another expression. How can I use SED inside SHELL Scripting and command prompt as... (2 Replies)
Discussion started by: shubhranshu
2 Replies

9. UNIX for Dummies Questions & Answers

sed substitution

Hi, I have a set of files containing strings like I.TEST1_TEST2 or B.ESSA_ESSB for example. Does somebody know how to substitute these strings whith the same name and an extension "_V1" (ie. I.TEST1_TEST2_V1) using sed command or else ? (3 Replies)
Discussion started by: jo_aze
3 Replies

10. UNIX for Dummies Questions & Answers

Substitution using sed

I know we can substitute a string using sed but how? For example: sed 's/(old variable)/(new variable)/ details.dat Am I suppose to put $old variable or whatever? Because I tried many times, it didnt work by putting $old variable. Am I suppose to enclose it with "" or ''? Please help (3 Replies)
Discussion started by: Ohji
3 Replies
Login or Register to Ask a Question