If
$text = ' MEANINGFUL THINGS GO HERE ';
How can I get
$cleanText = 'MEANINGFUL THINGS GO HERE';
I know the following will remove all the white spaces
$text=trim($text);
but how can incorporate actual escaped space into the trim as well?
Meaningful Things can contain [shortcodes], html tags, and also escaped characters. I need these to be preserved.
Any help would be appreciated.
Thanks!
additional tests