in reply to Working with source of returned web page
If so, this is just a simple regex match:
If this isn't what you need, a concrete example of what you are looking for would help.if ($response->content =~ m/<hr>(.*?)<hr>/) { $matched_number = $1; } else { # didn't find a match }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Working with source of returned web page
by tachyon-II (Chaplain) on Jun 09, 2008 at 20:59 UTC | |
|
Re^2: Working with source of returned web page
by clone4 (Sexton) on Jun 09, 2008 at 20:07 UTC |