I see these used interchangeably. What's the difference?
feedback
|
There is no difference other than that of syntax. | |||||||||
feedback
|
|
There is no difference. From perldoc perlsyn:
| ||||
|
feedback
|
|
Four letters. They're | ||||
feedback
|
|
Ever since its introduction in perl-2.0, In my own code, in the rare case that I'm using a C-style for-loop, I write
but for iterating over an array, I spell out
I find that it reads better in my head that way. | |||
feedback
|
| |||
|
feedback
|
|
There is a subtle difference (http://perldoc.perl.org/perlsyn.html#Foreach-Loops) :
This program :
will produce that :
| |||
feedback
|
|
In case of the "for" you can use the three steps. 1) Initialization 2) Condition Checking 3) Increment or decrement But in case of "foreach" you are not able increment or decrement the value. It always take the increment value as 1. | |||
|
feedback
|