Yea or Nay this idea, please. I've had it for a month or so.
Around the time of my "regex reversal" craze, I also had the
idea of providing, as a learning tool (or more?), a means
of translating from a simple english specification to a Perl
regex. The idea being that this would help people understand
what a regex does by forming one from what they say.
An example might be (if it were function-oriented):
# /^[+-]?\d+$/
$match_integers = form_REx(
start, # ^
class("+-"), # [+-]
optional, # ?
digit, # \d
one_or_more, # +
end # $
);
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(<< 'END'); # single-quoted!
start # ^
class "+-" # [+-]
optional # ?
digit # \d
one_or_more # +
end # $
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".
But before I do this... would anyone find it useful? I'm
not about to waste time on something no one needs.
japhy --
Perl and Regex Hacker
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.