Loop through a Perl array
@myNames = ('Larry', 'Curly', 'Moe');
foreach (@myNames) {
print $_;
}
#programming - #perl - #howto
From JR's : articles
17 words - 113 chars
created on
- #
source
- versions
Related articles
Installing a Perl Module - Jan 13, 2015
Perl links to read - Jul 09, 2013
Run perl script as a daemon - Nov 14, 2014
Add HTML Scrubber to Junco - Oct 01, 2013
Perl code for date and time processing - Jul 08, 2013
more >>