次のような HTML があります。
<dd class="price">
<sup class="symbol">$</sup><span class="dollars">58</span><sup class="cents">.00</sup>
</dd>
$58.00 を 1 つの文字列として返す xpath は何ですか?
私はPHPを使用しています:
$xpath = '?????';
$result = $xml->xpath($xpath);
echo $result[0]; // want this to show $58.00, possible?