here i'm working with php regular expression. in this project my leader said use only regular expression instead of PHP predefined function. i know the PHP string functions are simple to find output. but here i need to use regular expression.
this is the equivalent php function
$refined_output = str_replace(' ','',$stripped_result);
i need the regular expression pattern equivalent the above php string function.