In the spirit of this thread: xcode tips and tricks
I was wondering what some of the experienced regexer's out there favorite tips and tricks are.
|
5
|
In the spirit of this thread: xcode tips and tricks I was wondering what some of the experienced regexer's out there favorite tips and tricks are.
|
||||||||
|
|
|
Recursion (if your flavor supports it)! Example:
(That's PCRE syntax; some flavors, like PCRE, do not support recursion of Edit: Here's a better example, a pattern I actually use, which matches nested parentheses groups—and allows for quotes within which may contain parentheses and backslash-escaped quotes within the quotes, which are ignored.
And this question and all of its answers should be community wiki. |
|||
|
|
|
|
Using subpattern values in the same pattern. For example in html, matching an open tag and all the content until find the corresponding close tag using only a regular expression. Here's an example in php:
Look that the pattern contains Testing the regular expression with an input like this:
Will output the next matches:
|
|||
|
|
|
|
Using sed to perform lookups. Here's an example of converting a single digit to its textual equivelant:
The first part appends a lookup table to the end of the string. The second part finds the value in the lookup table and replaces the input with the result of the lookup. |
||
|
|
|
|
The best tip I know: Learn how regular expressions are processed. |
||
|
|
|
|
This isn't a code tip exactly, but I love testing regular expressions with the Javascript Regexp Tester and Cheat Sheet. 5 test cases let me quickly set up edge cases and try different ideas without having to lose changes - very useful. |
||
|
|
|
|
The ability to write
is very powerful, and allows you to do some minimal searching for balanced expressions that wouldn't otherwise be possible (or, in Perl, would be possible only using experimental features). |
||
|
|
|
Learning about |
||
|
|
|
|
Know well what regexes can and can't do. Know a lot of the syntax by heart and have an idea about all the rest. And then there's the fact that if you want to get the maximum out of regexes, it's very good to know the perks of your flavor well. Really, I can't get it more tricky. Just know what you're doing and it's not really hard anymore (unless you are making four regexes that contain circular references and in their final form are over 350 characters long (yes, I've been there) and even then it is somewhat doable). I would say it's practice and experience much more than some tips or tricks. |
||
|
|
|
|
This may be slightly out of line here,
for example to escape the path strings. Also, when working with variables, double quoting works better.
I love the pattern memory feature to locate contextual patterns.
will, for example, replace all |
|||
|
|
|
|
Matching 'keyword = value' pairs
Matching date MM/DD/YY HH:MM:SS
Removing leading and trailing blanks (trim)
Extracting all numbers from a string (using perl)
|
||||||
|
|
|
For people who want to run regexes against HTML tags and not have embarrassing greediness issues, |
||||||||||||||||
|