in reply to Reaped: Regexp help, multiple lines

$string = qq!Paragraph One Paragraph Two Paragraph Three!; my $return = "[\r\n]"; my ($paragraph_two) = $string =~ m/.+$return(.+)$return.+/i; print $paragraph_two;
Output:
Paragraph Two
This was done fast, but is this along the lines of what you are on about ?