Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to replace within a little bash script a string inside a file but... I am getting weird results.

Let's say I want to replace:

<tag><![CDATA[text]]></tag>

With:

<tag><![CDATA[replaced_text]]></tag>

Should I use sed? I think due to / and [ ] I am getting weird results...

What would be the best way of approaching this?

share|improve this question

4 Answers

Yes, you need to escape the brackets, and either escape slashes or use different delimiters.

sed 's,<tag><!\[CDATA\[text\]\]></tag>,<tag><!\[CDATA\[replaced)text\]\]></tag>,'

That said, SGML and XML are not actually any better than HTML when it comes to using regexes; don't expect this to generalize.

share|improve this answer

Perl with -p option works almost as sed and it has \Q (quote) switch for its regexes:

perl -pe 's{\Q<tag><![CDATA[text]]></tag>}
           {<tag><![CDATA[replaced_text]]></tag>}' YOUR_FILE

And in Perl you can use different punctuation to delimiter your expressions (s{...}{...} in my example).

share|improve this answer
1  
+1 for \Q. To end quoting, use \E – Gowtham Apr 10 '12 at 17:57
+1 for literal strings. This would be even more excellent if anyone has a link to how to escape the original or replacement text to avoid embedded occurrences of \E or other special sequences. – l0b0 Apr 11 '12 at 10:04

This should be enough:

$ echo '<tag><![CDATA[text]]></tag>' | sed 's/\[text\]/\[replaced_text\]/'
<tag><![CDATA[replaced_text]]></tag>


You can also change your / separator inside sed to a different character like ,, | or %.

share|improve this answer

Just use a delimiter other than /, here I use #:

sed -i 's#<tag><!\[CDATA\[text\]\]></tag>#<tag><![CDATA[replaced_text]]></tag>#g' filename

-i to have sed change the file instead of printing it out. g is for matching more than once (global).

But do you know the exact string you want to match, both the tag and the text? For instance, if you want to replace the text in all with your replaced_text:

perl -i -pe 's#(<tag><!\[CDATA\[)(.*?)(\]\]></tag>)#\1replaced_text\3#g' filename

Switched to perl because sed doesn't support non-greedy multipliers (the *?).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.