Help for this page

Select Code to Download


  1. or download this
    $bytes =~ s/(?:[^\x0D]|\x0D(?!\x0A))*//;
    
  2. or download this
    $bytes =~ s/.*?(?=\x0D\x0A)//;
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    } else {
        warn "Did not find '0x0D 0x0A' in $in_file";
    }