in reply to Cropping the output of the pattern matcher
Parsing HTML may be tougher than it seems, so you might consider using HTML::Parser.
However, considering your question:
How do I crop the data based on my delimeters '><' and return only what was between them?
A simple split should suffice, such as:
my @bits_and_pieces = split /></, $line;
-- TMTOWTDI
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Cropping the output of the pattern matcher
by jerrygarciuh (Curate) on Sep 24, 2001 at 00:29 UTC | |
by hopes (Friar) on Sep 24, 2001 at 05:14 UTC | |
by mandog (Curate) on Sep 24, 2001 at 07:28 UTC |