vote up 2 vote down star

If I have a file containing some escaped parens, how can I replace all instances with an unescaped paren using Perl?

i.e. turn this:

.... foo\(bar ....

into this

.... foo(bar ....

I tried the following but receivied this error message:

perl -pe "s/\\\(/\(/g" ./file
Unmatched ( in regex; marked by <-- HERE in m/\\( <-- HERE / at -e line 1.
flag

3 Answers

vote up 10 vote down check

You're forgetting that backslashes mean something to the shell, too. Try using single quotes instead of double quotes. (Or put your script in a file, where you won't need to worry about shell quoting.)

link|flag
Gah, can't believe I didn't think of that. Friday can't come soon enough. – dmercer Feb 19 at 21:56
vote up 5 vote down

Gah. From command line, no less. Way too many levels of metacharacter interpretation.

Try replacing your double quotes with single quotes, see if that helps.

link|flag
Thanks, you're about 8 seconds behind the earlier answer. Cheers – dmercer Feb 19 at 21:57
vote up 0 vote down

cjm's answer is probably the best. If you must do it at the command line, try using quotemeta() or the metaquoting escape sequence (\Q...\E). This worked for me in a bash prompt:

perl -pe "s/\Q\(\E/(/g" ./file
link|flag

Your Answer

Get an OpenID
or

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