in reply to Code that copy's multiple times a $ from a document
#!/usr/bin/perl\ use strict; use warnings; open my $FH "<", "filename.txt" or die $!; while (my $line = <$FH>) { my ($id, number, $sequence) = split /\s+/, $line; # ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Code that copy's multiple times a $ from a document
by Waterdrake (Initiate) on May 21, 2014 at 17:59 UTC | |
by GotToBTru (Prior) on May 21, 2014 at 20:35 UTC | |
by Waterdrake (Initiate) on May 21, 2014 at 21:52 UTC | |
by poj (Abbot) on May 21, 2014 at 19:50 UTC |