Reputation: 11
I'm trying to preg_replace charset=blablabla;
and charset=blablabla"
with charset=utf-8;
and charset=utf-8"
. Please see ;
=
and "
characters, and of course searched string can be lower/uppercase.
Can you help me?
Upvotes: 0
Views: 174
Reputation: 51950
You could replace the value with something like:
$subject = 'Testing... charset=baz; and charset=bat" :-)';
echo preg_replace('/(?<=charset=)[a-zA-Z0-9_-]+(?=[;"])/', 'utf-8', $subject);
// Testing... charset=utf-8; and charset=utf-8" :-)
Deconstructed, the regex matches:
charset=
(using a lookbehind)Upvotes: 1
Reputation: 4755
You could try something like this.
echo preg_replace("#charset=[a-zA-Z0-9]+(\;)?#", "charset=utf-8$1", "charset=sdfsfsds");
Upvotes: 0