-7

如何在perl中的不同数组元素中存储不同行的文本文件

例如文本文件包含

US
London

如何将美国存储在数组 [0] 中,将伦敦存储在数组 [1] 中

4

3 回答 3

6

这是一个选项:

use strict;
use warnings;

my $fileName = 'text.txt';

open my $fh, '<', $fileName or die $!;
chomp( my @array = <$fh> );
close $fh;

print qq{\$array[0] contains "$array[0]"\n};
print qq{\$array[1] contains "$array[1]"};

输出:

$array[0] contains "US"
$array[1] contains "London"
于 2012-11-19T07:28:13.827 回答
3

这将打开一个文件并将每一行读入一个数组:

open my $fh, '<', $filename;
chomp(my @lines = <$fh>);
close $fh;

有关更多信息,请参见perlfaq

于 2012-11-19T07:20:29.267 回答
1
@arr=();
open(KJ,"ur_file");
@arr=<KJ>;
close(KJ);
于 2012-11-20T05:53:44.687 回答