The ( and ) around the .*? are grouping parentheses... they tell Perl's regular expression engine to capture whatever it matches between the [ and ], and store it in a variable: the variable name will be a digit corresponding to the set of parentheses ($1 for the first group, $2 for the second group, etc.).

So, in this case, Perl captures what it finds between the [ and ] and stores that string in $1.

And what does it match? In this case, we've told it to match any character ("."), repeated 0 or more times ("*"), in a non-greedy manner ("?"). This last is best illustrated by example. Say your original string was

aslkj[2099asgjskjw]asljgn[awoeiwj]
There are two sets of [ and ] strings in there. Without the "?" in the regular expression, Perl would match from the first [ to the last ], putting the following into $1:
2099asgjskjw]asljgn[awoeiwj
Most likely, this isn't what you want, so we put in the non-greedy modifier to make Perl do what you want. :)

By the way, I said that "." matches any character; this isn't strictly true. It usually doesn't match carriage returns; if you want it to match carriage returns, add the "/s" modifier at the end of the regular expression.

For more information, take a look at perlre. It explains all of this and more.


In reply to Re: how do i take out a string within a string ? by btrott
in thread How to extract a delimited substring? by Anonymous Monk

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.