I want to regexp the wether data values for "Cityname", "Zip Code" and
"Degree Celcius" out of the following html code...
I just couldn't make it. (I thought it would be easier...)
<table cellpadding="2" cellspacing="0" border="0" width="100%"
class="register">
<tr>
<td colspan="3" class="idWether">Cityname:</td>
</tr>
<tr>
<td colspan="3" class="idWetherField">$cityname</td>
</tr>
<tr>
<td colspan="3" class="idWether">Zip Code:</td>
</tr>
<tr>
<td colspan="3" class="idWetherField">$zip_code</td>
</tr>
<tr>
<td colspan="3" class="idWether">Degree Celcius:</td>
</tr>
<tr>
<td colspan="3" class="idWetherField">$degree_celcius</td>
</tr>
</table>
Muchos Gracias