Marcello,
You do not say what marks the end of a sentence. In english, there are many ways to do this (period, question mark, exclamation mark, etc). Also, your regex does not look like it should work by your specifications. This will also break on the sentence "How are you today Dr. Smith?"
#!/usr/bin/perl
use strict;
use warnings;
my $msg = "One bright day in the middle of the night,\n";
$msg .= "two dead men got up to fight.\n";
$msg .= "Back to Back they faced each other,\n";
$msg .= "drew their swords and shot each other.\n";
$msg .= "A deaf police man heard this noise,\n";
$msg .= "came and killed those two dead boys.\n";
$msg .= "If you don't believe this lie is true,\n";
$msg .= "ask the blind man - he saw it too!\n";
$msg =~ tr/\n//d;
for my $sentence ( split /[.!?]/ , $msg ) {
if ( $sentence =~ /^\s*([a-zA-Z0-9]+)\s+([a-zA-Z0-9]+)\s+/ ) {
print "$1 $2\n";
}
}
__END__
One bright
Back to
A deaf
If you
Cheers -
L~R
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.