vote up 5 vote down star
3

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
flag

5 Answers

vote up 6 vote down check

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.

link|flag
vote up 0 vote down

If by word, you mean sequence of letters, then you can use this:

"^[^a-zA-Z]*$"

to match a string that does not contain any letters. If by word, you mean a word that's in the dictionary, a regex is the wrong tool for the job.

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Thanks Mr. Bart! There are tons of solutions on net but one mentioned here is rear!

link|flag

Your Answer

Get an OpenID
or

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