Contributed by perl_virgin
on Aug 01, 2002 at 14:25 UTC
Q&A
> regular expressions
Description: Hi,
I am fetching a HTML page into a scalar variable. The page has a list of links to various items with unique id.
I am interested in retrieving all such unique id # from the scalar variable.
Any suggestions ?
Thanks
Answer: How do I remove a specific keyword from a HTML page contributed by kvale When trying to extract useful bits from HTML,
a good general strategy is to use
HTML::Parser to decompose HTML into
its constituent elements and extract the parts
you want with event handlers.
-Mark
| Answer: How do I remove a specific keyword from a HTML page contributed by Anonymous Monk Regarding the original question, one useful tool you may look into is the lynx used in conjunction with its -dump option. Combined with Perl regexps, there's not much you can't do with the actual information and links on the page. | Answer: How do I remove a specific keyword from a HTML page contributed by Foggy Bottoms Hi kvale, you said that a good general strategy is to use HTML::Parser to decompose HTML into its constituent elements and extract the parts you want with event handlers.. Even though this seems like a good way to handle HTML and retrieving data, I'm not convinced it's quite sufficient or efficient at all : I've been wanting to extract useful information from a webpage. What I infer by useful information is actually when you're on a newspaper website reading an article, to be able to retrieve the article only. In order to do that you need to find the beginning and the ending of the article's body. However, within the article itself there can be several HTML tags. I'm afraid your method would simply split the article apart turning it into nonsense.
I haven't found any better way than to have a look at the HTML code itself and finding out whether special tags are used. Newspaper webmasters may sometimes use hidden HTML tags (<!-- article start-->) but then I need to come up with templates depending on which newspaper's website I'm currently analyzing.
Have you any other idea ? I'd greatly appreciate your comments on this. |
Please (register and) log in if you wish to add an answer
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|