in reply to Re^4: Can't figure out how to include LAST member of the array
in thread Can't figure out how to include LAST member of the array
perlynewby the above comment was not directed to you.
Note that $i <= ($End-1) can be simplified to $i < $End and also you can use single quotes inside double quotes so that you don't have to escape double quotes print "aaa\"xx\"zzz\n"; print "aaa'xx'zzz\n";
I hope Perl helps you automate
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: Can't figure out how to include LAST member of the array
by perlynewby (Scribe) on Feb 09, 2021 at 21:41 UTC | |
by bliako (Abbot) on Feb 10, 2021 at 09:35 UTC | |
by afoken (Chancellor) on Feb 10, 2021 at 20:27 UTC | |
by bliako (Abbot) on Feb 10, 2021 at 23:19 UTC |