http://www.perlmonks.org?node_id=926345


in reply to Demarcate Regexes with Unicode

On one of my machines, two of the characters you proposed aren't displayed correctly, because there's no font installed that contains them.

As a maintainer of code like that I would be unhappy to be faced with characters that I don't know how to produce with the keyboard.

In my humble opinion, the real problem with regex readability is that people tend to not reuse regexes, so everything is pieced together from the primitives.

I find

use Regexp::Common qw /URI/; if ($string =~/$RE{URI}{HTTP}/) { ... }

more readable than any of the alternatives you have offered, and there are no "weird" characters involved.

Replies are listed 'Best First'.
Re^2: Demarcate Regexes with Unicode
by toro (Beadle) on Sep 16, 2011 at 11:41 UTC
    I hadn't heard of Regexp::Common. Awesome! You've just saved me a lot of time moritz, thank you.