I have a string abc55abc
I need to strip abc from both sides. I've tried this without much success...
$var = "abc55abc"; $var = preg_replace("abc", " ", $var);
😕
$var = 'abc55abc'; $var = str_replace('abc', '', $var);
dah.........Thanks!