your code section is hard to decipher in my chrome
> if ($str =~ /(\\x{[A-F\d]+})/i){ // error by perl -Tcw
if ($str =~ /^(\d{2,4})[^\d](\d{2})/){ // no error by perl -Tcw
some remarks:
- you don't append comments with // in Perl, it's #
- the no error part is legal syntax for a a range of repetitions
- the error part is not, hence (old) Perl thinks ° a literal curly { is expected. so implicitly { is translated to \{ instead of throwing an error
- the deprecation means that literal { has to be escaped explicitly now
Please note the difference:
(debugger demo with perl -de0 )
DB<4> $str = '\\x{A3f4}' #
+literal curly
DB<5> if ( $str =~ /(\\x{[A-F\d]+})/i ) { print $1 } #
+implicit but deprecated
\x{A3f4}
DB<6> use warnings; if ( $str =~ /(\\x\{[A-F\d]+})/i ) { print $1 } #
+explicit and no warning
\x{A3f4}
DB<7> $str = '123X12' #
+no curlies, just repeated numbers
DB<8> if ( $str =~ /^(\d{2,4})[^\d](\d{2})/) { print "$1;$2" } #
+meta curly
123;12
°) see DWIM
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.