如果我打開一個字符串如「233445」的文件,那我該如何將該字符串拆分爲數字「2 3 3 4 4 5」並將每個數字相加「2 + 3 + 3等等...「並打印出結果。拆分並添加數字
到目前爲止我的代碼看起來是這樣的:
use strict;
#open (FILE, '<', shift);
#my @strings = <FILE>;
@strings = qw(12243434, 345, 676744); ## or a contents of a file
foreach my $numbers (@strings) {
my @done = split(undef, $numbers);
print "@done\n";
}
但我不知道從哪裏開始對實際加載的功能。
+1指出'qw()'',錯誤。 – dgw 2012-02-02 21:43:45
非常感謝,對於錯誤點和幫助。 – 2012-02-02 21:49:43