Mark-Jason Dominus, Plover Systems Co.
Track: Perl
Date: Monday, July 22
Time: 1:45pm - 5:15pm
Location: Grande Ballroom B
Almost everyone has written a regex that failed to match something they wanted it to, or that matched something they thought it shouldn't, and often it can be hard to predict what a regex will do. This class will fix that.
The first section will explore the algorithm that perl uses internally to do regex matching. Understanding this algorithm will allow us to predict whether a regex will match, which of several matches Perl will find, and which regexes will be faster than others. During this discussion we'll pause to discuss practical applications that illustrate features of the algorithm. We'll examine the essential but frequently misunderstood concept of 'greed', and we'll learn why commonly-used regex symbols like '.', '$', and '\1' might not mean what
you thought they did.
In the second section, we'll apply our knowledge of the internals, examining at several common disasters, a few practical parsing applications, and some new features such that would have been hard to understand before. We'll see an example of every regex metacharacter and modifier. We'll finish with a discussion of some of the new optimizations that were added in Perl 5.6, and why you should avoid the '/i' modifier.
- Inside the Regex Engine
- Regular Expressions are Programs
- Backtracking
- Quantifiers
- Greed
- Anti-greed
- Anchors and assertions
- Backreferences
- Disasters and Optimizations
- Where machines come from
- Disaster examples
- Regex modifiers
- Tokenizing
- New optimizations
- Matching strings with balanced parentheses