in reply to Re: Interpolating variables in a string
in thread Interpolating variables in a string

Though not if it contains an unpaired '}'.
--Dave
  • Comment on Re^2: Interpolating variables in a string

Replies are listed 'Best First'.
Re^3: Interpolating variables in a string
by borisz (Canon) on Oct 13, 2004 at 22:49 UTC
    then do it like the first poster suggest:
    ( my $newstr = $str ) =~ s/(\$\w+)/$1/eeg;
    Boris