in reply to Re^2: Why is this string only PARTIALLY interpolated?
in thread Why is this string only PARTIALLY interpolated?

I'm not sure that this is well-advised, but a simple loop should be enough:

$x = eval qq("$x") while $x =~ m!\$!;

Replies are listed 'Best First'.
Re^4: Why is this string only PARTIALLY interpolated?
by misterperl (Friar) on Aug 04, 2023 at 12:50 UTC
    gotcha not terrible I guess! TY