Help for this page

Select Code to Download


  1. or download this
    s/foo/bar/
    s/(fo)o/bar$1/
    
  2. or download this
    while(my $line = <FILE>) {
        chomp;
        eval "\$string =~ $line; 1" or die $@;
    }