Hello I have a lot of div tags, but I want to delete the div tag of characters in that little div tag.Number of string <10 ex

$txt=<<<HTML
 <div class="abc"> 123ab</div>
<div id="abc"> 123ab</div>

 <div class="abc"> 123abcdfdfsdfsdfdsfsdfsdfdsf</div>
HTML;

And return only dig(include long string)

$txt=<<<HTML
    <div class="abc"> 123abcdfdfsdfsdfdsfsdfsdfdsf</div>
HTML;
link|improve this question

52% accept rate
4  
This calls for using a DOM parser. See e.g. this: stackoverflow.com/questions/3650125/how-to-parse-html-with-php/… – Pekka Oct 7 '10 at 12:15
1  
feedback

1 Answer

up vote 2 down vote accepted
preg_replace('#<div(?:[^>]*)>.{0,10}</div>#u','',$txt)

not tested

link|improve this answer
Don't work.:(.Can You help me – Thoman Oct 7 '10 at 13:17
Sorry i just edit ^^' – MatTheCat Oct 7 '10 at 13:43
Great Thanks MattheCat – Thoman Oct 7 '10 at 16:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.