Hello my good Monks. Based on a question in irc.freenode.net/#perl, I created a simple pattern matching routine. It takes patterns with names match tokens between curly brackets, such as {foo}/{bar}-{baz}, and the returns a hash containing the token names as hash keys, and the matched strings as values.

It is fairly trivial, and the code to implement it is quite simple. But before I blow this away, I was curious if there were any CPAN modules to accomplish the same task. I would be surprised if there weren't, but if not, perhaps I should make one? It seems vaguely useful, and might deserve somewhere to live. Any thoughts welcomed.

Here is the code as it currently stands:

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; print Dumper({ named_match("{foo} {bar}", "one two" ) }); print Dumper({ named_match("{baz} - {qux}", "three - four - five") }); sub named_match { my ($pattern, $string) = @_; my @names; for my $token ($pattern =~ /{([^}]+)}/g) { $token = quotemeta $token; $pattern =~ s/{$token}/(.*)/; push @names, $token; } my %matches; @matches{@names} = $string =~ /$pattern/; return %matches; }

Update: fixed an error caused by last-minute changes. Thanks to ccn.


In reply to RFC: named pattern match tokens by revdiablo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.