php preg_match与两个div值之间得到

How can I get the value of this text. Idea: Year: 2012 KM: 69.000 Color: Blue Price: 29.9000

preg_match('@</div></td><td
 class=\"searchResultsAttributeValue\">(.*?)<\/td>@si',$string,$val);

 $string = "<div class="classifiedSubtitle">Opel > Astra > 1.4 T Sport</div>
</td>
            <td class="searchResultsAttributeValue">
                    2012</td>
            <td class="searchResultsAttributeValue">
                    69.000</td>
            <td class="searchResultsAttributeValue">
                    Blue</td>
            <td class="searchResultsPriceValue">
                        <div> $ 29.900 </div></td>
                <td class="searchResultsDateValue">
                        <span>21 Nov</span>
                        <br/>
                        <span>2016</span>
                    </td>
                <td class="searchResultsLocationValue">
                        USA<br/>Texas</td>"

The best solution isn't with regex. You should do it with Dom.

$dom = new DOMDocument();
$dom->loadHTML($string);
$xPath = new DOMXpath($dom);
$tdValue = $xPath->query('//td[@class="searchResultsAttributeValue"]')->get(0)->nodeValue;

This way you'll get the td element with the class searchResultsAttributeValue. Of course you should verify if this element really exists, and some other verifications but that's the way.

Hope I was helpful.