I create an iPhone application using RSS Feed. I using XMLParsing and get the following result in a String. The parsing string having Html tags. I want to read image tag’s src only. How can I read src only from the following String Value?

How can I read src content only from that string?
I found this… basically use NSRegularExpression class.
http://cocoabyss.com/2010/first-step-with-nsregularexpression/
The example there searches exactly what you want:
src="..."😉