<br><br><div class="gmail_quote">On Tue, Jul 8, 2008 at 11:00 AM, Madison Kelly &lt;<a href="mailto:linux@alteeve.com">linux@alteeve.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi all,<br>
<br>
 &nbsp;I&#39;ve got a simple problem I often come across, and I&#39;ve got a way to make it work. However, I&#39;ve always felt there must be a more ... elegant way of doing it.<br>
<br>
For example, let&#39;s say I want to copy a variable and strip a bit off the end;<br>
<br>
my $foo=&quot;ABC-987-01&quot;;<br>
my $bar=$foo;<br>
$bar=~s/(\w+-\d+)-\d+/$1/;<br>
# $bar now &#39;ABC-987&#39;.<br>
<br>
That&#39;s three lines. Is there a way to do this in one line? Specifically, is there a way to assign &#39;$1&#39; to a new variable in one go?<br>
</blockquote><div><br>&nbsp;($bar) = ($foo =~  /(\w+-\d+)-\d+/);<br><br></div></div><br>