Doyley Posted January 17, 2008 Share Posted January 17, 2008 HI all, I'm trying to grab all items from an RSS feed. In between and including <item> and </item>. The code that I have come up with just grabs everything and doesn't distinguish between the items. Can anybody help, here is the regex I come up with. preg_match('/<item>[-\\]\\\\!"£$%^&*()_+=¬`{[}:;@\'~#<,>.?\/|\\w\\s]+<\/item>/', $subject, $matches) Many thanks! Link to comment https://forums.phpfreaks.com/topic/86525-rss-regex/ Share on other sites More sharing options...
effigy Posted January 17, 2008 Share Posted January 17, 2008 %<item>.*?</item>%s Link to comment https://forums.phpfreaks.com/topic/86525-rss-regex/#findComment-442137 Share on other sites More sharing options...
Doyley Posted January 17, 2008 Author Share Posted January 17, 2008 Genius! Thank you very much, I hate regex. Link to comment https://forums.phpfreaks.com/topic/86525-rss-regex/#findComment-442147 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.