Help for this page

Select Code to Download


  1. or download this
    perl -a010F -lpe "$_=join qq(\t),qq('$F[0]'),'=>',qq('$F[1]')"
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        my @columns = split /\t/;
        printf "'%s'\t'=>\t'%s'\n", @columns;
    };