Perl
從文件中隨機讀取(perl)
file.txt
在這部分程式碼中,我需要隨機讀取:... open my $fh, '<', 'file.txt' or die $!; while ( <$fh> ) { next unless /\S/; chomp; my $response = $ua->get( "http://$_.domain.tld/" ); ...
如何
file.txt
隨機讀取行?
文件是按順序訪問的。
您可以做的是將整個文件讀入一個數組並從中選擇一個隨機條目。