undef = <$trf> for 1 .. 4; my %hash = (); #initiate empty hash while( my $line=<$trf>) { chomp $line; my @line=split("\t",$line);
Another way to skip the first four lines:
my %hash = (); #initiate empty hash while ( my $line = <$trf> ) { next if $. < 5; # skip first four lines chomp $line; my @line = split /\t/, $line;
In reply to Re^2: Skript help needed - RegEx & Hashes
by jwkrahn
in thread Skript help needed - RegEx & Hashes
by PandaRaey
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |