Possible Duplicate:
What RSS parser should I use in PHP?
Here is the code:
<item>
<title><![CDATA[OLK: The statement of shareholders for shares sale and for shares purchase]]></title>
<link>http://www.nasdaqomxbaltic.com/market/?pg=news&news_id=250910</link>
<description><![CDATA[<pre></pre>]]></description>
<pubDate>2011-08-12 16:25:00</pubDate>
<guid>250910</guid>
</item>
<item>
<title><![CDATA[ZMP: Pranešimas apie sandorius susijusį su emitento vertybiniais popieriais]]></title>
<link>http://www.nasdaqomxbaltic.com/market/?pg=news&news_id=250907</link>
<description><![CDATA[<pre></pre>]]></description>
<pubDate>2011-08-12 16:12:00</pubDate>
<guid>250907</guid>
</item>
And I need to get the values OLK, ZMP which are between <title><![CDATA[ and :. What is the fastest and the most efficient way to do this in php regex? and why is CDATA here?
NOTE: Im getting the news_id= too.
You should use XML parser (eg. SimpleXML) to gain access to the tag content, and then use regular expressions on the content of the tag.
This is the most efficient solution, because:
CDATA,When it comes to part of your question about
CDATA, you can see more info about it here.