Help for this page

Select Code to Download


  1. or download this
    Id = $ENV{APPL}
    
  2. or download this
    $string = '$ENV{APPL}';
    $var =  eval $string;
    
  3. or download this
    if ($string =~ /\$ENV{([^}]+)}/) {
      $var = $ENV{$1};
    }