in reply to Re^3: newbie need help with a simple code
in thread newbie need help with a simple code

Im sorry, i meant are the regex automatically captured to the scalars, if not what do i need to do to capture them into $1, $2 etc
  • Comment on Re^4: newbie need help with a simple code

Replies are listed 'Best First'.
Re^5: newbie need help with a simple code
by kielstirling (Scribe) on Mar 05, 2013 at 05:25 UTC
    $1, $2, $3 and so on are what Perl populates captures to. However, some of us use a syntax that allows for named captures. If you read the man page for perlre all will become clear.