how can you skip the first occurance and stop at the second in a regex?

<table id="xxx">
<tr>
<td>
        <table>
        <tr>
        <td>content1</td>
        </tr>
        </table>
</td>
</tr>
<tr>
<td>content2</td>
</tr>
</table>

If I wanted to grab all that from within a document I know I can start
at table id= because it's unique but how do I skip the first </table>
and stop at the second?




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to