This is pretty easy to read, no? And it helps make a connection between the "line noise" and the instruction associated with it. Here's another example, if it were to parse a string holding the specification:# /^[+-]?\d+$/ $match_integers = form_REx( start, # ^ class("+-"), # [+-] optional, # ? digit, # \d one_or_more, # + end # $ );
It looks very similar (and it should). It's just a matter of "do I want to make lots of functions" or "do I want to do a lot of parsing".# /^[+-]?\d+$/ $match_integers = form_REx(<< 'END'); # single-quoted! start # ^ class "+-" # [+-] optional # ? digit # \d one_or_more # + end # $ END
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Regex Learning Tool
by quidity (Pilgrim) on Nov 23, 2000 at 00:14 UTC | |
|
Re: Regex Learning Tool
by KM (Priest) on Nov 23, 2000 at 00:27 UTC | |
|
(Ovid) Re: Regex Learning Tool
by Ovid (Cardinal) on Nov 23, 2000 at 02:23 UTC | |
|
Re (tilly) 1: Regex Learning Tool
by tilly (Archbishop) on Nov 23, 2000 at 01:29 UTC |