Remove non breaking space: Difference between revisions

Jump to navigation Jump to search
No edit summary
 
Line 9: Line 9:


== How to remove the non-breaking space In PHP ==
== How to remove the non-breaking space In PHP ==
Replace Non-breaking space with one whitespace using PHP: {{kbd | key=<nowiki>$result = str_replace("\xc2\xa0", ' ', $original_string);</nowiki>}}<ref>[https://stackoverflow.com/questions/40724543/how-to-replace-decoded-non-breakable-space-nbsp php - How to replace decoded Non-breakable space (nbsp) - Stack Overflow]</ref>
Replace Non-breaking space with one whitespace using PHP<ref>[https://stackoverflow.com/questions/40724543/how-to-replace-decoded-non-breakable-space-nbsp php - How to replace decoded Non-breakable space (nbsp) - Stack Overflow]</ref>
 
<pre>
$result = str_replace("\xc2\xa0", ' ', $original_string);
</pre>


== How to display the non-breaking space In PHP ==
== How to display the non-breaking space In PHP ==
Anonymous user

Navigation menu