I'm trying to extract the email text from a list but without success. In particular I've used this code
//li/div/p//*[contains(., '@')]
but strangely it doesn't work! Could you help me? Here's the code exemple
<li class="bgmp_list-item">
<h3 class="bgmp_list-placemark-title">
<a href="http://www.exemple.com" class=""> Name1 </a>
</h3>
<div class="bgmp_list-description">
<p class="">
<strong class="">Responsible:</strong> John Doe <br>
<strong class="">Site:</strong> <a title="www.exemple.com" href="http://www.exemple.com" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','www.2ld.it']);" target="_blank" class="">www.2ld.it</a>
<br>
<strong class="">Email:</strong> some_email@email.com
<br><strong class="">Address:</strong> <a href="http://www.exemple.com" target="_blank" class="">3, Main Street 00000, London</a> <br>
<strong>Tel:</strong> 00 000000 <strong>Fax:</strong> 0000000
</p>
</div>