Znajdź tekst bez żadnego znacznika w elemencie div

Muszę uzyskać dostęp do tekstu 48,20 Lac (s), który nie ma żadnego znacznika wewnątrz div, co jest powodem, dla którego nie mogę uzyskać do niego dostępu. Muszę to znaleźć w pliku PHP. Próbowałem $ html-> find ('div.priceDetail'), a następnie trim (strip_tags ($ result)), który dał mi 48,20 Lac (s) + niepotrzebny tekst. Odkąd mam zbudować plik ogólny, nie mogę polegać na eksplodowaniu i implozji dla konkretnej ustalonej sprawy.

<div class="priceDetail">
    <b>Total Price :</b>
    <img alt="" src="someimage">48.20 Lac(s)
    <!-- Per Sq Ft Price -->
    <span class="pricePerSqFt">(Price per sq.ft. : Rs. 3,679)</span>
    <!-- Code for price Trends -->
    <span class="priceGrowth">4 %
        <img alt="" src="someimage"
        align="absmiddle">
        <span class="iconWhatisThis">
            <img src="someimage"
            class="whatIcon" align="absmiddle">
            <span style="" id="StoolTip" class="price_main-c"></span>
        </span>
    </span>
    <div class="tt_top-c">
        <span class="priceGrowth"></span>
    </div>
    <div class="tt_mid-c">
        <div class="tt_pointer-c"></div>
        <div>
            <span class="tt_txt-c">Per sq.ft. price for this property is
                <b>higher than the average</b>property price in this locality as per MagicBricks.com
                Price Trends.</span>
        </div>
        <span class="tt_txt-c">
            <span class="tp_txt">To know more about this
                <a href="#priceTrends" onclick="swithTab('priceTrends', tabbedDivArray);">Click
Here</a>
            </span>
        </span>
    </div>
    <div class="tt_bot-c"></div>
</div>

questionAnswers(2)

yourAnswerToTheQuestion