Thinking to write one module does all parsing/getting values for the passed values. Can anybody suggest any good tutorial for writing Perl module ? ( i am not asking the code but any tutorial to refer).
Thanks,
Shekar
| [reply] |
| [reply] |
Basically I need to parse different types of feeds. So i thought of writing separate module. Feeds could be Pure RSS feed, Pure RSS Media feed,
Youtube Feed OR Media cum rss feed OR
Metacafe feed OR Yahoo Feed OR BLIP TV etc.
This is the reason i thought of wrinting a general module. Do we have any modules that can be used for the same ? if yes please suggest. I thought the approach would be like this,
- Check the type of feed (RSS/ Media RSS, Apple, Yahoo, Youtube etc
- Pass different fun to take care of them
my Question - How can i differentiate between feeds?
if($val !~ /(.*)<rss version=\"(1|2\.0)\"(.*)/is ) {
die qq{
Not a RSS Feed....Dying here..\n
};
}
Just trying to figure out whether it is a rss feed or not?. Some rss contains <?xml...bla bla..>and then (next line)<rss.. But this is not working. I just need to match optional <xml before <rss , it may be on the same line or next .. Pls help.
Thanks, Shekar | [reply] [d/l] [select] |