Help for this page

Select Code to Download


  1. or download this
    $_=q(ab cdefg);
    $x=q($1,);
    s#(^\w+)# my $sub = $1; $x=~s/\$1/$sub/; $x #e;
    print;
    
  2. or download this
    s#(^\w+)# my $sub = $1; (my $subx = $x) =~ s/\$1/$sub/; $subx #e;