I retrieve an HTML string from the database and needed to change all  s' to white spaces
<p>            C              G                 Am</p><p>C             G                Am                F</p>
so I wanted the change the to whitespaces, so i can use in a pre element
<pre></pre>
as following
<pre >
    //here i needed to insert the converted string
    //for example
                C              G                 Am          F
    C                 G              F   C/E   Dm   C
</pre>
I need a solution to do this either in PHP, JS / Jquery
Please Help me through out this
I have tried
$nbsp = html_entity_decode(" ");
$s = html_entity_decode("<p>            C              G                 Am</p>");
$s = str_replace($nbsp, " ", $s);  
I tried This but this replaces all nbsp's to one white space
 
     
     
     
    
C G Am
"); $s = str_replace($nbsp, " ", $s); I tried This but this replaces all nbsp's to one white space – Mohamed Ashique Ar-Rasool Jun 11 '21 at 01:45