Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    $string1 =~ s/"\\"/"\"/g;
    print "The resulting value is: $string1\n";
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    use warnings;
    
    print "Contents of ARGV:\n>=", join( "=<\n>=", @ARGV), "=<\n";