↧
Answer by Martin Jansen for How do you capture certain data from description...
The following should sort of get you there. (I wrote this from the top of my head and it does not exactly following your XML syntax. But you get the idea.)<?php$str =...
View ArticleAnswer by Jonathan M for How do you capture certain data from description...
I had a problem like this and I ended up using YQL. Take a good look at the page-scraping code given there, especially the select command. Then go the the console and put in your own select statement,...
View ArticleAnswer by Jörg Beyer for How do you capture certain data from description...
please, don't extract data from XML-documents via regex.The long answer is e.g. here: https://stackoverflow.com/a/335446/313145The short answer is: it is not easier to use regex and will break often.
View ArticleHow do you capture certain data from description field in RSS feed?
I have an rss feed that I am reading into. I need to retrieve certain data from the field in this feed.This is the example feed data :<content:encoded><![CDATA[<b>When:</b><br...
View Article