Hey guys I've got this little problem I need some help it's got me stumped
I've got a preg_replace function on a string that looks kinda like this: TEXT#23423#9999#3453#5399993#
my preg_replace function is basically: preg_replace("#9999#", "#", "TEXT#23423#9999#3453#5399993#", -1)
so I am wanting this result: TEXT#23423#3453#5399993#
BUT instead this is what I'm getting: TEXT#23423###3453#53#3#
notice how for some reason it is ignoring my # delimeter... does anyone know how to work around this? I'm really stumped about this it's driving me crazy!! Thanks for the help!
I've got a preg_replace function on a string that looks kinda like this: TEXT#23423#9999#3453#5399993#
my preg_replace function is basically: preg_replace("#9999#", "#", "TEXT#23423#9999#3453#5399993#", -1)
so I am wanting this result: TEXT#23423#3453#5399993#
BUT instead this is what I'm getting: TEXT#23423###3453#53#3#
notice how for some reason it is ignoring my # delimeter... does anyone know how to work around this? I'm really stumped about this it's driving me crazy!! Thanks for the help!