vote up 2 vote down star

I.e.:

echo H#97llo | MagicPerlCommand

Stdout:

Hallo

were MagicPerlCommand is something like

perl -pnle "s/#(\d+)/chr(\1)/ge"

(but that doesn't work).

flag

2 Answers

vote up 8 vote down check

Change \1 to $1 in your MagicPerlCommand. The \digit backreference style doesn't t work when the replacement expression is evaluated (i.e. s///e).

That worked for me on Windows and Linux.

link|flag
And that makes sense. – secr Jan 7 '09 at 14:14
vote up 3 vote down

As per the j_random_hacker answer, you must use $1 rather than \1.

This is because using the '/e' modifier to the regex means the right hand half is just another normal Perl expression, and not a regex substitution. Since it's Perl, you've got to use Perl's syntax for the bracket reference, and not the usual regex syntax.

link|flag
Yes, that makes sense. But it's strange that echo H#97llo | perl -pnle "s/#(\d+)/chr(\1)/ge" actually returned something (and it wasn't an exception). – secr Jan 7 '09 at 14:22
on my machines (Linux FC10 and Mac OS X) your code produces a warning "wide character in print". It's treating the \1 as a reference to a scalar. – Alnitak Jan 7 '09 at 14:30
Please note that it produces the same warning in Windows, which makes my delicious comment stupid. – secr Jan 7 '09 at 14:34

Your Answer

Get an OpenID
or

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