That allows arbitrary insertions anywhere in the string, so "silly gamma" would match "sigma". The requirement
"sigma" matches "sig<SOMETHING>ma"
can also be read as allowing for only a single insertion. That looks simpler, but the regex is harder to build. Here is one way:
my $word = 'sigma';
my $re = join '|' =>
map join( '.*?' => map quotemeta, @$_) =>
map [ substr( $word, 0, $_), substr( $word, $_)] =>
1 .. length( $word) - 1;
foreach my $text (
'sigma',
'stigma',
'silly gamma',
'magma',
) {
print("$text ", ($text =~ $re ? "matches" : "doesn't match"), "\n")
+;
}
It involves splitting $word in all pairs of non-empty substrings, something that comes up occasionally. I have yet to find a satisfactory solution for that. Using
substr() like I did above is clear enough, but lengthy.
map { [ $word =~ /(.{$_})(.*)/] } 1 .. length( $word) - 1;
is shorter but less readable.
What else?
Update: No improvement either way, but fun:
map { ++ pos; [ split /\G/] } ( $word) x ( length( $word) - 1);
Anno
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.