in reply to / deliminator

Also, It is important to remember that Perl allows for other characters to indicate a pattern match. For example,
my @simpsons = split(m{/},$_);
Use this as further proof that Perl has "more than one way to do it."
Crulx