我被給了一個文本文件,其中有大量數據按列排序。每列是用逗號分隔的 。如何使用Perl按列B劃分數據文件的列A
我怎樣才能將列分成另一列來打印輸出答案?我現在正在使用Perl,所以它必須在Perl中完成。我怎麼能這樣做?
這是我到目前爲止有:
#!/usr/bin/perl
open (FILE, 'census2008.txt');
while (<FILE>) {
chomp;
($sumlev, $stname,$ctyname,$popestimate2008,$births2008,$deaths2008) = split(",");
}
close (FILE);
exit;
[你嘗試過什麼?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) –
我編輯上述 – user977154