Help for this page

Select Code to Download


  1. or download this
    my $string = '\\\\\\a';
    # Unprocessed: \\\a
    # Should be:   \a
    # Result:      \\a
    
  2. or download this
    my $string = '\\\\\\?';
    # Unprocessed: \\\?
    # Should be:   \?
    # Result:      \\#