in reply to
Reading parts of array elements
I'd say, if, for example, you want to get the second char from the second array element:
say substr($foo[1], 1, 1);
[download]
The last substr element means that you only need 1 character from the string.
Comment on
Re: Reading parts of array elements
Download
Code
In Section
Seekers of Perl Wisdom