Remove non breaking space: Difference between revisions
Jump to navigation
Jump to search
→How to remove the non-breaking space In PHP
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 | 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 == | ||