Home New Posts Topics Members FAQ
Post your question to a community of 467,146 developers. It's quick & easy.
for example assume i have an array i.e, Expand|Select|Wrap|Line Numbers my @a = (1,2,3,4,5,6); for(my $i = 0;$i<$#a;$i++) { print $a[$i]; } Above for loop we r excluding last element to print;
Sign in to post your reply or Sign up for a free account.