Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'my $x = "A\tB\t\tC"; say $x; say $x =~ y/\tABC/\t{3}/rs;'
    A       B               C
    {       3       }
    
  2. or download this
    # use 5.014;
    # use warnings;
    # use autodie;