in reply to Re: I need help parsing this text file!
in thread How to parse text file with clear delimiters: regex? split?

If you (ab)use split's ability to limit the number of fields it splits something into, you can do away with the regexp for something a little cleaner...

my($m,$d,$y,$t,$b) = split /[ \/\n]/ => $note, 5;

    --k.