Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the following Perl oneliner in a bash script to capture multiline text between pre tags and add a second iteration of the tag contents wrapped in a different starting and ending string:

new_start_string="NEWSTART"
new_end_string="NEWEND"

perl -i -pe  "BEGIN{undef $/;} s/<pre>(.*?)<\/pre>/<pre>\$1<\/pre>${new_start_string}\$1${new_end_string}/smg" /path/to/file

It works perfectly for the task as specified. I'm aware I'm parsing HTML with regex and that's not ideal, however the formatting of this text file is a known factor, very simple, under local control and done by local specification so it is a rare case in which parsing would be overkill and I've chosen not to do this via parsing.

Using the same oneliner, how can I URL encode the second iteration of the capture value $1 variable? If it's impossible, is there another approach to get this result that is also relatively simple and readable?

share|improve this question
You can use the /e modifier and place any code you like in the replace part. – Qtax Aug 30 '12 at 12:25

2 Answers

For URI escaping you can use URI::Encode. To use a function inside the substitution, see the /e option.

share|improve this answer
up vote 0 down vote accepted

Because I preferred to use a module in Perl core, I ended using this oneliner using the e modifier in combination with CGI::Util:

perl -MCGI -i -pe  "BEGIN{undef $/;} s/<pre>(.*?)<\/pre>/'<pre>' . \$1 . '<\/pre>' . '$new_start_string' . CGI::escape(\$1) . '$new_end_string'/esmg" /my/path
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.