Help for this page

Select Code to Download


  1. or download this
    $hash{a} = "go";
    $string =~ s{\$(\w+)}{$hash{$1}}ge;
    
  2. or download this
    $hash->{a} = "go";
    $string =~ s{\$(\w+)}{$$hash{$1}}ge;
    
  3. or download this
    $hash->{a} = "go";
    $string =~ s{\$(\w+)}{$hash->{$1}}ge;