- or download this
@line = split(/(\.)/,$line);
- or download this
If the PATTERN contains parentheses, additional list elements are crea
+ted from each matching substring in the delimiter.
- or download this
while(<DATA>) {
$line=$_;
...
__DATA__
The quick. Brown fox. Jumps over the. Lazy dog.
- or download this
@line = (
'The quick',
...
' Lazy dog',
'.'
);