for completeness:
> Of course, that doesn't test if the metachars make sense as a regex
let's Perl parse Perl =)
$ perl -ple ' $_ = eval "sub { /$_/ }" ? "OK\n" : "$@" '
a
OK
a(
Unmatched ( in regex; marked by <-- HERE in m/a( <-- HERE / at (eval 2
+) line 1, <> line 2.
a[
Unmatched [ in regex; marked by <-- HERE in m/a[ <-- HERE / at (eval 3
+) line 1, <> line 3.
a()
OK
UPDATE
unfortunately not always correct:
$ perl -ple ' $_ = eval "sub { /$_/ }" ? "OK\n" : "$@" '
a[$]
OK
but
$ perl -e ' "abc" =~ /a[$]/ '
Unmatched [ in regex; marked by <-- HERE in m/a[ <-- HERE 5.010000/ at
+ -e line 1.
UPDATE
interesting, this happens because it's a run-time error ... (why?)
$ perl -e 'sub {"aaa" =~ /a[$]/}'
$ perl -e '"aaa" =~ /a[$]/'
Unmatched [ in regex; marked by <-- HERE in m/a[ <-- HERE 5.010000/ at
+ -e line 1.
$ perl -ce '"aaa" =~ /a[$]/'
-e syntax OK
looks like a parser problem for me!
UPDATE
variable interpolation is part of the problem,
a[$]
is a valid pattern, as long as it's not interpolated:
perl -E 'say q(a$) =~ q(a[$]) '
1
UPDATE
this is very reliable
perl -ple ' $_ = eval "sub { 'a' =~ q\0$_\0 }" ? "OK\n" : "$@" '
to avoid problems with \0-delim consider using here-docs instead, or even a pack/unpack combination
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.