Possible Duplicate:
How to parse and process HTML/XML with PHP?
Grabbing the href attribute of an A element
how can you get all that is between the tags: <td class="detail"></td>
? I use PHP.
Why don't you use DOMXpath?
$xpath = new DOMXPath(yourHtml);
$nodeList = $xpath->query( "//td[@class='detail']" );
foreach($nodeList as $node)
{
echo $node->nodeValue;
}
Parsing HTML with regex isn't a good choice