Help for this page

Select Code to Download


  1. or download this
    $string =~ s/\$(\w+)/ ${$1} /xeg;
    
  2. or download this
                    print " ----------------- " . $ref->{attribute} . "\n"
    
  3. or download this
    my $string = $ref->{attribute};
    my $output = eval $string;
    ...
      die "problem with eval: $@";
    }
     print " ----------------- $output\n";