How can i get image from the description tag of rss feed..
thanks..
thanks..
B4X:
Dim xm As Xml2Map
xm.Initialize
Dim ParsedData = xm.Parse(rssString) As Map
Dim rss As Map = ParsedData.Get("rss")
Dim channel As Map = rss.Get("channel")
Dim items As List = channel.Get("item")
For Each item As Map In items
Dim title As String = item.Get("title")
Dim description As String = item.Get("description")
<item>
<title><![CDATA[#The team was dispatched.]]></title>
<description><![CDATA[#CAUTION <br> The team has been dispatched. on duty. <br><img style src="http://graphics8.nytimes.com/images...ly-report/bits-daily-report-thumbStandard.jpg" referrerpolicy="no-referrer">]]></description>
</item>