in reply to /foo${re}bar/
{}'s are separators. They are used such that Perl knows where the variable name finishes:
$x = "abc"; $xghi = "def"; print "${x}ghi\n"; # abcghi print "$xghi\n"; # def
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: /foo${re}bar/
by eweaverp (Scribe) on Jul 27, 2003 at 04:19 UTC | |
by BUU (Prior) on Jul 27, 2003 at 04:22 UTC |