jack_64 has asked for the wisdom of the Perl Monks concerning the following question:
The following snippet will extract everything between "start" and "end" in a line
line :- start checking script end
if ($_ =~ /start([\s\S]+?)end/i)
But if i want to extract from the following format what will be the regex
start checking script end
thanks monks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Regex Help
by morgon (Priest) on Jun 12, 2012 at 16:34 UTC | |
|
Re: Regex Help
by toolic (Bishop) on Jun 12, 2012 at 16:08 UTC | |
|
Re: Regex Help
by kennethk (Abbot) on Jun 12, 2012 at 16:41 UTC | |
|
Re: Regex Help
by AnomalousMonk (Archbishop) on Jun 12, 2012 at 21:57 UTC |