I'm using the Google places api and I am trying to parse the XML data to get a number of things including the rating. The only problem is that sometimes there isn't a rating tag ( shown below). How do I work around this problem?
<name>Zari</name>
<type>restaurant</type>
<type>food</type>
<type>establishment</type>
<formatted_address>212-214 Ifield Drive, Crawley, United Kingdom</formatted_address>
<geometry>
<location>
<lat>51.1218980</lat>
<lng>-0.2135630</lng>
</location>
</geometry>
<rating>3.3</rating>
</result>
<result>
<name>Happy Meeting</name>
<type>restaurant</type>
<type>food</type>
<type>establishment</type>
<formatted_address>
<geometry>
<location>
<lat>51.1161600</lat>
<lng>-0.1844890</lng>
</location>
</geometry>
</result>
<result>
