I am parsing rss using nsxmlparser and I would like to get some images from the rss...how can I do that?
so here is an example of the rss
<p><img scr = "IMGURL"></p>
how can I get the "IMGURL"
thanks, TC
|
I am parsing rss using nsxmlparser and I would like to get some images from the rss...how can I do that? so here is an example of the rss
how can I get the "IMGURL" thanks, TC |
||||
|
|
|
Here is a quick hack - only do this if you know the strings are not going to change position. Otherwise you risk crashing.
Its a quick and dirty trick... but it works! So long as the data stays the same format. Your call! |
|||
|
|
|
You need to use a xml parser like XQuery. The query would be: /p/img@src You can use a function such as:
And call it like this:
|
||||
|
|