hi
I have a table which something like
<tr>
<td width="9%" align="center" class="body_text">XXX</td>
<td>111</td>
<td width="9%" align="center" class="body_text">YYY</td>
<td>222</td>
</tr>
I would like to get XXX and YYY. and I used a strpos to get the position of <td width="9%" align="center" class="body_text">
and substr to get XXX and YYY.
and it works ok. but it seems it is not a very good solution .
so I want to try reg.exp. i have read thru. some other post, and tried out already but it doesn't work.
can anyone help with it. thanks