I have a long string that has imbedded in it: "ABC_1_" and "ABC_2_" and "ABC_3_" etc.
For example:
"lorum ipsum ABC_1_ doit more ABC_3_ and so on".
I need to write a PHP preg_replace that will remove the 6 characters (ABC_xx) if the first 4 are "ABC_" and return the full remaining string, in my example:
"lorum ipsum doit more and so on".
Thanks!