Help for this page

Select Code to Download


  1. or download this
    my $char = 'n';
    $char = sprintf("\\%s", $char);
    
  2. or download this
    my $char = 'n';
    $char =~ s/(n)/\\$1/;