Here's another solution that uses only one very general regexp and an external handler:

while (<>) { s/\[([^=\]\/]+)(=([^\]]+))?\]([^\[]+)\[\/\1]/&handler($1,$3,$4)/eg +; print; } sub handler { my ($tag, $value, $data) = @_; for ( $tag ) { /img/ && return "<img src='$data'>"; /link/ && return "<a href='$value'>$data</a>"; } }

What's happening here is that every time perl encounters a bracketed tag, it extracts the tag name, value (if defined) and data (the text between the tags) and calls the sub handler which returns the replacement text.

An advantage here is that if you want to add more tags, you just have to edit the handler sub rather then generating a bunch of regular expressions that your text'll have to go through serially. A disadvantage is that, well, the regular expression might be a little confusing.


In reply to Re: User Code by eg
in thread User Code by Monolith-0

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.