Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can regular expression be utilized to match any string except a specific string constant let us say "ABC" ? Is this possible to exclude just one specific string constant? Thanks your help in advance.

share|improve this question
1  
Which tool are you using? Depending upon the tool, there might be a way to specify this external to your regex. grep supports a -v option to invert the sense of the match, for example. – Will Bickford Sep 8 '09 at 17:23
Can't you just 'if (/^ABC$/) else { ... } where the else would be the not matching ABC – Xetius Sep 8 '09 at 18:48
So are you looking to match every character of a given string, except the ABC part of it? In other words, "A string with ABC" would match "A string with ". – Steve Wortham Sep 8 '09 at 19:06

5 Answers

You have to use a negative lookahead assertion.

(?!^ABC$)

You could for example use the following.

(?!^ABC$)(^.*$)

If this does not work in your editor, try this. It is tested to work in ruby and javascript:

^((?!ABC).)*$
share|improve this answer
This will work if you're looking for a string that does not include ABC. But is that the goal? Or is the goal to match every character except ABC? – Steve Wortham Sep 8 '09 at 18:37
Thanks for pointing that out, you are right - my suggestion only avoids strings starting with ABC - I forgot to anchor the assertion. Going to correct that. – Daniel Brückner Sep 8 '09 at 18:56
That's still different than what I was thinking. Perhaps the questioner will clarify what they're looking for. – Steve Wortham Sep 8 '09 at 19:04
I find it quite clear - "any string except a specific string [constant]" hence any string (including strings containing ABC) except ABC itself. – Daniel Brückner Sep 8 '09 at 19:09
Yeah, you may be right. If so then you're answer is perfect. You can see my answer to see how I interpreted it. – Steve Wortham Sep 8 '09 at 19:48
show 3 more comments

You could use negative lookahead, or something like this:

^([^A]|A([^B]|B([^C]|$)|$)|$).*$

Maybe it could be simplified a bit.

share|improve this answer
That won’t allow no string that starts with ABC. – Gumbo Sep 8 '09 at 21:15

This isn't easy, unless your regexp engine has special support for it. The easiest way would be to use a negative-match option, for example:

$var !~ /^foo$/
    or die "too much foo";

If not, you have to do something evil:

$var =~ /^(($)|([^f].*)|(f[^o].*)|(fo[^o].*)|(foo.+))$/
    or die "too much foo";

That one basically says "if it starts with non-f, the rest can be anything; if it starts with f, non-o, the rest can be anything; otherwise, if it starts fo, the next character had better not be another o".

share|improve this answer
That won’t allow the empty string, f, fo and foo. – Gumbo Sep 8 '09 at 21:14
@Gumbo: It allows the empty string just fine; notice that ($) is the first alternative, so ^$ (empty string) is accepted. I tested it, and at least in perl 5.0.10 the empty string is accepted. – derobert Sep 8 '09 at 21:50
... sorry, perl 5.10.0, of course! – derobert Sep 8 '09 at 21:51

Try this regular expression:

^(.{0,2}|([^A]..|A[^B].|AB[^C])|.{4,})$

It describes three cases:

  1. less than three arbitrary character
  2. exactly three characters, while either
    • the first is not A, or
    • the first is A but the second is not B, or
    • the first is A, the second B but the third is not C
  3. more than three arbitrary characters
share|improve this answer

In .NET you can use grouping to your advantage like this:

http://regexhero.net/tester/?id=65b32601-2326-4ece-912b-6dcefd883f31

You'll notice that:

(ABC)|(.)

Will grab everything except ABC in the 2nd group. Parenthesis surround each group. So (ABC) is group 1 and (.) is group 2.

So you just grab the 2nd group like this in a replace:

$2

Or in .NET look at the Groups collection inside the Regex class for a little more control.

You should be able to do something similar in most other regex implementations as well.

UPDATE: I found a much faster way to do this here: http://regexhero.net/tester/?id=997ce4a2-878c-41f2-9d28-34e0c5080e03

It still uses grouping (I can't find a way that doesn't use grouping). But this method is over 10X faster than the first.

share|improve this answer

Your Answer

 
discard

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