Help for this page

Select Code to Download


  1. or download this
    binmode F, ":raw";
  2. or download this
    open my $f, '<', 'text.txt'
       or die "can't open file 'text.txt' for reading: $!";
    ...
    while (<$f>) {
       print "Result: $1" if /particularly(.*)/;
    }