I have a custom template engine (too late for using a generic one from CPAN or elsewhere), it has to be able to process marked up stuff through a function that processes the contents of a tag and/or the params of that tag. The tags are html like. There are some issues with this code though, the part which selects the html like attributes doesn't work on all versions of perl, i.e. the first (.*?) block. If I split that into two matches first w/o that block, and then one more with it works, but it's about twice as slow. Anyway even if it's not splitted it performs miserably on some boxes. Any ideas about optimizing this regex:
my $re = qr/$this->{mask_start}\Q$key\E(.*?)$this->{mask_end}(.*?)$thi +s->{mask_start_close}\Q$key\E$this->{mask_end_close}/is; while ($this->{template} =~ /$re/) { my $params = $this->mask_block_params($1, $2); my $html = &$callback($key, $params); $this->{template} = $` . $html . $'; }
Using s/$&/$html/; on the last line instead of $` . $html . $' doesn't make much difference.

In reply to Regex speed issue by mtsachev

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.