up vote 236 down vote favorite
142
share [g+] share [fb]

I know it is possible to match for the word and using tools options reverse the match. (eg. by grep -v) However I want to know if it is possible using regular expressions to match lines which does not contain a specific word, say hede?

Input:

Hoho
Hihi
Haha
hede

# grep "Regex for do not contain hede" Input

Output:

Hoho
Hihi
Haha
link|improve this question
1  
Probably a couple years late, but what's wrong with: ([^h]*(h([^e]|$)|he([^d]|$)|hed([^e]|$)))*? The idea is simple. Keep matching until you see the start of the unwanted string, then only match in the N-1 cases where the string is unfinished (where N is the length of the string). These N-1 cases are "h followed by non-e", "he followed by non-d", and "hed followed by non-e". If you managed to pass these N-1 cases, you successfully didn't match the unwanted string so you can start looking for [^h]* again – stevendesu Sep 29 '11 at 3:44
feedback

protected by Community Oct 8 '11 at 12:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

6 Answers

up vote 403 down vote accepted

The fact that regex doesn't support inverse matching is not entirely true. You can mimic this behavior by using negative look-arounds:

^((?!hede).)*$

The regex above will match any string, or line without a line break, not containing the (sub) string 'hede'. As mentioned, this is not something regex is "good" at (or should do), but still, it is possible.

Explanation

A string is just a list of n characters. Before, and after each character, there's an empty string. So a list of n characters will have n+1 empty strings. Consider the string "ABhedeCD":

    +--+---+--+---+--+---+--+---+--+---+--+---+--+---+--+---+--+
S = |e1| A |e2| B |e3| h |e4| e |e5| d |e6| e |e7| C |e8| D |e9|
    +--+---+--+---+--+---+--+---+--+---+--+---+--+---+--+---+--+

index    0      1      2      3      4      5      6      7

where the e's are the empty strings. The regex (?!hede). looks ahead to see if there's no substring "hede" to be seen, and if that is the case (so something else is seen), then the . (dot) will match any character except a line break. Look-arounds are also called zero-width-assertions because they don't consume any characters. They only assert/validate something.

So, in my example, every empty string is first validated to see if there's no "hede" up ahead, before a character is consumed by the . (dot). The regex (?!hede). will do that only once, so it is wrapped in a group, and repeated zero or more times: ((?!hede).)*. Finally, the start- and end-of-input are anchored to make sure the entire input is consumed: ^((?!hede).)*$

As you can see, the input "ABhedeCD" will fail because on e3, the regex (?!hede) fails (there is "hede" up ahead!).

link|improve this answer
3  
Perfect! Just used this! – George Edison Jul 20 '10 at 5:42
1  
@dskanth, not sure what you mean, but please, feel free to create a question of your own! – Bart Kiers Mar 14 '11 at 14:33
2  
This is the second time I found this answer useful; too bad I can't vote for it twice! – titaniumdecoy Mar 23 '11 at 1:14
1  
@Wilderness, you'll have to do that in two steps: make sure there's "alpha" somewhere, and make sure there's no "beta". The combined regex would look like: (?m)^(?=.*alpha)((?!beta).)*$. Note that the (?m) causes ^ and $ to treat start- and end-of-lines to be matched respectively (opposed to start- and end-of-input). Also added an explanation in my answer. – Bart Kiers May 19 '11 at 18:49
1  
Also, if you need to capture the string (if it passes the test) into a backreference group, you need to wrap an extra set of brackets around the asterisk: ^(((?!hede).)*)$ -- I needed to do this for an Apache redirect rule. – Simon Aug 19 '11 at 0:04
show 8 more comments
feedback

The best solution is:

^((?!hede).*)$

AND NOT

^((?!hede).)*$

In the 2nd example regex above, hihede will not match because it contains the substring hede, but you may want it to. If you want to check for a word, then we're talking about checking from the beginning of the string, not from each position (ie, a substring).

link|improve this answer
3  
The OP's example was ambiguous, but the question wasn't: he wanted a pure-regex equivalent for grep -v, which means does not contain, not does not start with. – Alan Moore Mar 17 '11 at 12:10
1  
You're right. But I saw the anchors ^ and $ in another answer which threw me off (implying we are checking the entire string only). – FireCoding Mar 17 '11 at 19:52
Your answer is still useful as it expands on OP's problem. I upvoted it! – slashline Aug 25 '11 at 20:01
This solved my problem where I was trying to find does not start with. – abelito Nov 28 '11 at 14:40
feedback

If you're just using it for grep, you can use grep -v hede to get all lines which do not contain hede.

ETA Oh, rereading the question, grep -v is probably what you meant by "tools options".

link|improve this answer
feedback

Here's a good explanation of why it's not easy to negate an arbitrary regex. I have to agree with the other answers, though: if this is anything other than a hypothetical question, then a regex is not the right choice here.

link|improve this answer
feedback

Not regex, but I've found it logical and useful to use serial greps with pipe to eliminate noise.

eg. search an apache config file without all the comments-

grep -v '\#' /opt/lampp/etc/httpd.conf      # this gives all the non-comment lines

and

grep -v '\#' /opt/lampp/etc/httpd.conf |  grep -i dir

The logic of serial grep's is (not a comment) and (matches dir)

link|improve this answer
I think he is asking for the regex version of the grep -v – Angel.King.47 Jul 12 '11 at 15:27
i comment in apache.conf like this: – borrel Jul 22 '11 at 14:45
feedback

The given answers are perfectly fine, just an academic point:

Regular Expressions in the meaning of theoretical computer sciences ARE NOT ABLE do it like this. For them it had to look something like this:

^([^h].*$)|(h([^e].*$|$))|(he([^h].*$|$))|(heh([^e].*$|$))|(hehe.+$) 

This only does a FULL match. Doing it for sub-matches would even be more awkward.

link|improve this answer
feedback

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