Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to match camel cased words beginning with ! such as !RedHat contained in $line. I'm using php 5.3.10-1ubuntu2 with Suhosin-Patch (cli).

I'm trying following things:

  • $line = preg_replace(" !([A-Z])", " $1", $line);
    • result: PHP Warning: preg_replace(): No ending delimiter '!' found
  • $line = preg_replace(" \!([A-Z])", " $1", $line);
    • result: PHP Warning: preg_replace(): Delimiter must not be alphanumeric or backslash
  • $line = preg_replace(" [!]([A-Z])", " $1", $line);
    • result: PHP Warning: preg_replace(): Unknown modifier '('
  • $line = preg_replace(" [\!]([A-Z])", " $1", $line);
    • result: PHP Warning: preg_replace(): Unknown modifier '('

How is the correct way to match ! in PHP regexp?

share|improve this question

2 Answers

up vote 5 down vote accepted

You need to use delimiters in your regex - non-alphanumeric, as the error message states:

$line = preg_replace("/ !([A-Z])/", " $1", $line);

Notice the / characters at the beginning and end of the regex string.

These don't have to be '/' - you could use '#' or even '!' - but then you'll need to escape the '!' char inside the regex itself.

share|improve this answer
you don't need to escape the ! – Bart Kiers Mar 13 '12 at 9:48
@BartKiers Yes, I know - I just copied a random one of his options - turned out to be the second one. I updated the answer now. – Aleks G Mar 13 '12 at 9:49
@OP please note that to use php's regex functions you have to enclose the expression with a "random" (self chosen) delimiter. This can be / (as in the example), but also &, *, or whatever. But pretty much any example found on the internet omits those enclosures (which is correct), so don't forget them :) – giorgio Mar 13 '12 at 9:50
1  
I wouldn't call them normal delimiters. I think PHP is the only language where regexes need to be inside strings and require delimiters. Everywhere else it's only one of the two. – Јοеу Mar 13 '12 at 9:51
@Joey: "normal" in a sense of PHP. They don't have to be '/' - just need to be the same at the beginning and end and be non-alphanumeric. There's nothing wrong with using '!' as a delimiter, but then you will need to escape it. But I'm sure you know this. I updated my answer – Aleks G Mar 13 '12 at 10:00
show 1 more comment

Try this:

!\b([A-Z][a-z]*){2,}\b

Live preview: http://regexr.com?30a95 (check global and multiline).

share|improve this answer
1  
the word boundary in !\b[A-Z] can simply be omitted: there's always a \b between ! and a letter. The OP's problem is the delimiters, which Aleks already mentioned in his answer. – Bart Kiers Mar 13 '12 at 11:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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