Help for this page

Select Code to Download


  1. or download this
    $line =~ s:\|\|:\|\\N\|:g
    
  2. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    $line =~ s/\|\|/\|\\N\|/g;
    print qq(New line = $line);
    }