Code: ( text ) #!/usr/bin/perl -w use strict; my $string1 = $ARGV[0]; $string1 =~ s/"\\"/"\"/g; print "The resulting value is : $string1 \n";