vote up 5 vote down star
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.

flag

6  
imho must be a community wiki – dfa Jul 26 at 17:51
1  
This subject and your picture mean that I can't get the quote "It could easily be accomplished by a computer" out of my head. – Tim Whitcomb Jul 26 at 23:43

closed as not a real question by chaos, derobert, dfa, sth, Shog9 Jul 27 at 0:01

11 Answers

vote up 0 vote down

Recursion (if your flavor supports it)!

Example:

/(                 # capture group 1
    somepattern
    (?1)           # recurse group 1
)/x

(That's PCRE syntax; some flavors, like PCRE, do not support recursion of $0)

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.

/(\(
    (?:
        (?:
            \'(?:(?: \\\.|[^\\\'])*?)\' |      # Single quoted
            "(?:(?: \\\.|[^\\"])*?)" |         # Double quoted
            (?1) |                             # Nested parentheses
            .                                  # Anything else
        )*?
    )
\))/x

And this question and all of its answers should be community wiki.

link|flag
vote up 0 vote down

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:

$pattern = "/<(\w+)>.*?<\/\\1>/s";

Look that the pattern contains \\1 that represents the value of the first subpattern, in this case (\w+).

Testing the regular expression with an input like this:

$text  = <<<EOT
<h1>A history of bears.</h1>
<p>Hello <em>happy</em> world!</a><br /><b>Said the hungry bear!</b></p>
EOT;

preg_match_all($pattern, $text, $matches);
print_r($matches);

Will output the next matches:

Array
(
  [0] => Array
    (
      [0] => <h1>A history of bears.</h1>
      [1] => <p>Hello <em>happy</em> world!</a><br /><b>Said the hungry bear!</b></p>
    )
  [1] => Array
    (
      [0] => h1
      [1] => p
    )
)
link|flag
vote up 0 vote down

Using sed to perform lookups. Here's an example of converting a single digit to its textual equivelant:

> sed -e 's/$/0zero1one2two3three4four5five6six7seven8eight9nine/' \
>     -e 's/\([0-9]\).*\1\([^0-9]*\).*/\2/'
> 1
> one
> 9
> nine

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.

link|flag
vote up 4 vote down

The best tip I know: Learn how regular expressions are processed.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

The ability to write

(.*)something$1

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).

link|flag
Most flavors will want (.*)something\1 right? – eyelidlessness Jul 26 at 20:43
vote up 3 vote down

Learning about (?:), grouping without capture, is one of those crucial steps from beginner to intermediate regex user.

link|flag
vote up 2 vote down

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.

link|flag
vote up 4 vote down

This may be slightly out of line here,
but the most popular command line regex applications are seen with 'sed' and
I have often found people escaping path '/'es rather than do something like

's|path/to/A|some/other/path|g'

for example to escape the path strings.


Also, when working with variables, double quoting works better.

"s|${var1}|replacement|g"


I love the pattern memory feature to locate contextual patterns.

's|\(abc\).*\(pqr\)|\1AAA\2|g'
   -- 1 --  -- 2 -- --   --

will, for example, replace all abc*pqr patterns to abcAAApqr

link|flag
vote up 2 vote down

Matching 'keyword = value' pairs

m/(\w+)\s*=\s*(.*)\s*$/ # keyword is $1, value is $2

Matching date MM/DD/YY HH:MM:SS

m|(\d+)/(\d+)/(\d+) (\d+):(\d+):(\d+)|

Removing leading and trailing blanks (trim)

s/^\s+//; s/\s+$//;

Extracting all numbers from a string (using perl)

@nums = m/(\d+\.?\d*|\.\d+)/g;
link|flag
Your IP address regex wouldn’t match 127.0.0.1. – Gumbo Jul 26 at 18:03
also not ::1 :-) – Johannes Rössel Jul 26 at 18:14
Why not s/^\s+|\s+$//; – eyelidlessness Jul 26 at 20:43
vote up 5 vote down

For people who want to run regexes against HTML tags and not have embarrassing greediness issues, <tag[^>]*>something is a pleasing alternative to <tag.*>something.

link|flag
3  
or <tag.*?> would also work – serg555 Jul 26 at 17:56
3  
But HTML allows the > inside attribute values. – Gumbo Jul 26 at 17:56
But if I have the ungreedy modifier, which option is beter? <tag[^>]*> or <tag.*?> ? – Kiewic Jul 26 at 17:57
1  
@Kiewic: The first. – Gumbo Jul 26 at 18:00
@Gumbo: Thanks. I also went to the W3C Validator to check if a > character was allowed inside attribute values, and yes it is. :) – Kiewic Jul 26 at 18:09
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.