Avatar of psimation
psimation
Flag for South Africa

asked on 

str_replace and whitespace

Hi

can someone please tell me how I can search and replace HTML if the "search" part has whitespace in?

For instance:
$myhtml = '
<html>
<head>
<body>
<div class="1">
        <div clas="2">sadsasadsadsadasd
        </div>
</div>

<div class="1">
        <div clas="2">sadsasadsadsadasd
        </div>
</div>

<div class="1">
        <div clas="2">sadsasadsadsadasd
        </div>
</div>

</body>
</html>
';


Now I want to replace the

</div>

<div class="1">

with "</XXX><XXX>" so that my HTML can be passed to an XML function, but the whitespace is not playing along with str_replace...
PHP

Avatar of undefined
Last Comment
hielo

8/22/2022 - Mon