5. Do know what your regex really means.<br>
• Do know about ^, $, variable interpolation, the matching rules as de
+scribed by the Camel Book, modifiers, and the meaning of \n (newline)
+ in combination with ., ^ and $
Do know about precedence since disregarding it is one of the highest crime in regex country:
I've made a sample common mistake not paying attention to precedence
and I use this as a chance to pillory myself giving a perfect example of what not to do.
In node
Re: Short or Long Hand I was using an alternation being based on anchors:
/^0|6$/
This simply says match 0 at the beginning or match 6 at the end
while my intention was to match 0 or 6 ranging from beginning to the end of the string:
/^(?:0|6)$/
As an addition to your tutorial I'd like to see the basic requirement for regexes:
• You can't write an efficient regex as long as you don't know what your expected data will be:
Always think of the expected data while changing or simplifying regexes.
I personally like the term 'regexpected'
Keep it in mind and it will save your life ;-)
Please feel free to downvote node
Re: Short or Long Hand
/me castigating myself for not paying attention to precedence
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.