how do I strip off all white space and ?
I have this as a input in a wrapper I create,
bold
so before turning the text to bold, i want to strip off all white spaces and  , and turn it into bold,
Code: Select all
$this->content = preg_replace("/\[(.*?)\]\s\s+(.*?)\s\s+\[\/(.*?)\]/",
"[$1]$2[/$3]",
$this->content);Many thanks,
Lau