in reply to Using punctuation to split a text
split /[.!]/, $text; [download]
Enjoy, Mickey
So this should do the trick:
@sentences =split([.?!\L], $text); [download]
Thank you for your help.