in reply to Parse a block of text

Here's a way to identify if it is either the beginning or ending match or both.
if((my $first = /^Info I want/) ... (my $last = /^Start of/)) { print unless $first || $last; }