<div dir="ltr">When a regex has a capture, the return value of m// is the list of matched substrings. When it does not capture, it returns a boolean to indicate whether it matched or not. That's why you can do:<div><br>
</div><div style>if ( $line =~ /$pattern/o ) { .... }</div><div style><br></div><div style>Newer perls allow naming of captures within the RE. Read the Captures section of perldoc perlre:</div><div style><br></div><div style>
       Additionally, as of Perl 5.10.0 you may use named capture buffers and</div><div>       named backreferences. The notation is "(?<name>...)" to declare and</div><div>       "\k<name>" to reference. You may also use apostrophes instead of angle</div>
<div>       brackets to delimit the name; and you may use the bracketed "\g{name}"</div><div>       backreference syntax.  It’s possible to refer to a named capture buffer</div><div>       by absolute and relative number as well.  Outside the pattern, a named</div>
<div>       capture buffer is available via the "%+" hash.</div><div><br></div><div style>Tom</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, May 10, 2013 at 4:47 PM, Quantum Mechanic <span dir="ltr"><<a href="mailto:quantum.mechanic.1964@gmail.com" target="_blank">quantum.mechanic.1964@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div bgcolor="#FFFFFF"><div class="im"><div><br></div><blockquote type="cite"><div><div class="gmail_quote">On Fri, May 10, 2013 at 1:33 PM, Quantum Mechanic <span dir="ltr"><<a href="mailto:quantum.mechanic.1964@gmail.com" target="_blank">quantum.mechanic.1964@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I would have tried "my" instead of the punctuation variables:<br>
<br>
if (my @capture = /$regex/) {<br>
    foreach @capture {<br>
        do something;<br>
    }<br>
}<br></blockquote><div><br>That doesn't make any difference, @capture still (seems to get) the 1/true result code<br>when there is no capturing.</div></div></div></blockquote><div><br></div><br></div><blockquote type="cite">
<div><div class="gmail_quote"><div>It should create a new @capture each time. It doesn't always capture something, right? I'll have to try it when I get home.</div></div>
</div></blockquote></div><br>_______________________________________________<br>
toronto-pm mailing list<br>
<a href="mailto:toronto-pm@pm.org">toronto-pm@pm.org</a><br>
<a href="http://mail.pm.org/mailman/listinfo/toronto-pm" target="_blank">http://mail.pm.org/mailman/listinfo/toronto-pm</a><br>
<br></blockquote></div><br></div>