Help for this page

Select Code to Download


  1. or download this
    $line =~ /$regex/;
    
  2. or download this
    s/\),\(/\)\n\(/
    
  3. or download this
    my $regex = <STDIN>;
    chomp $regex;
    ...
        my $line = $_;
        s/$regex/$subst/gi;
    }