vote up 2 vote down star

I'm having trouble coming up with the correct regex string to remove a sequence of multiple ? characters. I want to replace more than one sequential ? with a single ?, but which characters to escape...is escaping me.

Example input:

Is this thing on??? or what???

Desired output:

Is this thing on? or what?

I'm using preg_replace() in PHP.

flag

8 Answers

vote up 7 vote down check
preg_replace('{\?+}', '?', 'Is this thing on??? or what???');

That is, you only have to escape the question mark, the plus in "\?+" means that we're replacing every instance with one or more characters, though I suspect "\?{2,}" might be even better and more efficient (replacing every instance with two or more question mark characters.

link|flag
vote up 2 vote down

preg_replace( '{\\?+}', '?', $text );

should do it.

You need to escape the question mark itself with a backslash, and then escape the backslash itself with another backslash.

It's situations like this where C#'s verbatim strings are nice.

link|flag
You don't need to escape the backslash in a single quoted string. You can if you want, but you don't have to. – jeremy Ruten Sep 25 '08 at 22:47
vote up 1 vote down

This should work (I have tested it):

preg_replace('/\?+/', '?', $subject);
link|flag
vote up 1 vote down
preg_replace('/\?{2,}/','?',$text)
link|flag
vote up 1 vote down

this should do it

preg_replace('/(\?+)/m', '?', 'what is going in here????');

the question mark needs to be escaped and the m is for multiline mode.

This was a good web site to try it out at http://regex.larsolavtorvik.com/

link|flag
vote up 0 vote down

Geez, five different regexes and they all seem to work. I hate when there's so many different ways to do something :)

link|flag
Ahh yes... one of the pitfalls (beautiful things??) about reg ex :) – Xian Sep 25 '08 at 22:51
vote up 0 vote down

have you tried the pattern

[\?]+

with the replacement of "?"

link|flag
vote up 0 vote down
str_replace('??', '?', 'Replace ??? in this text');
link|flag
The output of this will be "Replace ?? in this text", unless you put it in a while-loop, and if you do that it'll suddenly be a whole lot less efficient than preg_replace. On my test server, running this, in a loop, 1m times, took (roughly) 2.7 seconds (roughly), whereas the preg_replace only took 1.2 seconds. – grimman Nov 17 at 12:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.