I'm attempting something which I feel should be fairly obvious to me but it's not. I'm trying to match a string which does NOT contain a specific sequence of characters. I've tried using [^ab], [^(ab)], etc. to match strings containing no 'a's or 'b's, or only 'a's or only 'b's or 'ba' but not match on 'ab'. The examples I gave won't match 'ab' it's true but they also won't match 'a' alone and I need them to. Is there some simple way to do this?
|
2
|
|
|||
|
|
|
Use negative lookahead:
|
||||||||||||||||
|
|
|
I have a similar problem I'm trying to match a string which does NOT contain a specific sequence from group of characters e.g "ab" or "cd" or "ef". Can you help me with the syntax please? |
||
|
|
|
|
In this case I might just simply avoid regular expressions altogether and go with something like:
This is likely also going to be much faster (a quick test vs regexes above showed this method to take about 25% of the time of the regex method). In general, if I know the exact string I'm looking for, I've found regexes are overkill. Since you know you don't want "ab", it's a simple matter to test if the string contains that string, without using regex. |
||
|
|
|
Yes its called negative lookahead. It goes like this - Similarly there is positive lookahead - There are also negative and positive lookbehind - One point to note is that the negative lookahead is zero-width. That is, it does not count as having taken any space. So it may look like More information on this page |
||
|
|
|
|
Simplest way is to pull the negation out of the regular expression entirely: if (!userName.matches("^([Ss]ys)?admin$")) { ... } |
||||
|
|
|
The regex [^(ab)] will match for example 'ab ab ab ab' but not 'ab', because it will match on the string ' a' or 'b '. What language/scenario do you have? Can you subtract results from the original set, and just match ab? If you are using GNU grep, and are parsing input, use the '-v' flag to invert your results, returning all non-matches. Other regex tools also have a 'return nonmatch' function, too. If I understand correctly, you want everything except for those items which contain 'ab' anywhere. |
||
|
|
|
|
Using a character class such as To match a string which does not contain the multi-character sequence
|
|||
|
|
|
|
Using a regex as you described is the simple way (as far as I am aware). If you want a range you could use [^a-f]. |
||
|
|
