Help for this page

Select Code to Download


  1. or download this
      if (/(\$[^\/\n\t]*)/) {
    
  2. or download this
        my $var = $&;
        my $key = $var;
        substr($key, 0, 1) = "";
    
  3. or download this
    while(<FILE>) {
      if (my ($key) = /\$(\w+)/) {
    ...
      }
      print;
    }