in reply to Re^2: text to array
in thread text to array
#!/usr/local/bin/perl use strict; use warnings; open (my $wordfile, '<', 'test1234.txt')|| die "Could not open test123 +4.txt, $!"; while (<$wordfile>){ print join ',', split(/\t/, $_); exit; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: text to array
by torres09 (Acolyte) on Jun 06, 2013 at 09:29 UTC | |
by Anonymous Monk on Jun 06, 2013 at 09:35 UTC |