Help for this page

Select Code to Download


  1. or download this
    my $data;
    {
      local $/ = undef; # local means this change will be reversed at the 
    +end of the block
      $data = <$in_fh>;
    }
    
  2. or download this
    while ($data =~ /REGEX/g)
    {
      $data =~ s/REGEX/rep/;
    }