in reply to Using punctuation to split a text

almost ... :-)
split /[.!]/, $text;
anyway, I suggest you read perlre.

Enjoy,
Mickey

Replies are listed 'Best First'.
Re^2: Using punctuation to split a text
by UrbanHick (Sexton) on Nov 04, 2006 at 09:28 UTC

    So this should do the trick:

    @sentences =split([.?!\L], $text);

    Thank you for your help.

    -UH