Help for this page

Select Code to Download


  1. or download this
        my $line = $_; chomp $line;
        my @chunks = unpack "(A5)*", $line;
    
  2. or download this
        chomp;
        my @chunks = unpack "(A5)*", $_;
    
  3. or download this
    while (my $line=<DATA>) { ...
    
  4. or download this
        foreach my $i (@chunks) {
        print ">" . $i . "<\n";
    
  5. or download this
        print ">$_<\n" for @chunks;