Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Data::Dumper;
    print "$]\n", Dumper([qw[ \\d ]]), "\n";
    
  2. or download this
    # with 5.6.0
    5.006
    ...
    $VAR1 = [
              '\\d'
            ];
    
  3. or download this
         qw(a\\b)
             In Perl 5.6.0, qw(a\\b) produced a string with two
             backslashes instead of one, in a departure from the
             behavior in previous versions.  The older behavior has
             been reinstated.
    
  4. or download this
      s/\\\\/\\/g if $] eq '5.006'