in reply to Substring Syntax Check

I tried using split, but it didn't like the / as a delimitter.

I've no problem using / to split:

$ perl -wE '$_ = "12/13/14"; @x = split "/"; say for @x' 12 13 14 $

Replies are listed 'Best First'.
Re^2: Substring Syntax Check
by drodinthe559 (Monk) on Sep 26, 2008 at 22:42 UTC
    That worked. Thank you.