in reply to
split trying to look for /
Another option is to escape your '/' in the code.
@date = split(/\//, @date);
[download]
It's a classic mistake to forget that certain characters need to be escaped so that Perl will take them literally.
Comment on
Re: split trying to look for /
Download
Code
In Section
Seekers of Perl Wisdom