in reply to Re^2: Problems with Variable Scope in Perl
in thread Problems with Variable Scope in Perl
or$pdbString[@pdbString - 1] .= $_;
Which I find simpler to read (negative index references the array starting from the end).$pdbString[-1] .= $_;
|
|---|