Perl: Foreach loop

Perl foreach iterates through each element in the array or the list as follows: @persons = ("hari", "david", "mika"); foreach $person (@persons){ print "A Person in persons array is $person \n"; } This would print: A Person in persons array is hari A Person in persons array is david A Person in persons array is mika

Post your Answer

  • Lines and paragraphs break automatically.
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <c>, <cpp>, <drupal5>, <drupal6>, <java>, <javascript>, <php>, <python>, <ruby>. Beside the tag style "<foo>" it is also possible to use "[foo]". PHP source code can also be enclosed in <?php ... ?> or <% ... %>.

More information about formatting options