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

I know it is quite some weird goal here but for a quick and dirty fix for one of our system we do need to not filter any input and let the corruption go into the system.

My current regex for this is "\^.*"

The problem with that is that it does not match characters as planned ... but for one match it does work. The string that make it not work is ^@jj (basically anything that has ^ ... ).

What would be the best way to not match any characters now ? I was thinking of removing the \  but only doing this will transform the "not" into a "start with" ...

share|improve this question
1  
\^ is not not, it's a literal ^. – Skilldrick May 28 '10 at 15:20
If you don't want to match anything, what do you need a regex for? – Francisco Garcia May 28 '10 at 15:28
@Francisco business reasons, easier to deploy ;-) – Erick May 28 '10 at 15:38

9 Answers

up vote 11 down vote accepted

The ^ character doesn't mean "not" except inside a character class ([]). If you want to not match anything, you could use a negative lookahead that matches anything: (?!.*).

share|improve this answer
1  
+1 for negative lookahead solution. – x1a4 May 28 '10 at 15:20
Seems to work ! But this construct (?! <= ) is quite weird to me, what does it means exactly ? – Erick May 28 '10 at 15:21
@Erick, read this page for info about lookaround operators: regular-expressions.info/lookaround.html. – JSBձոգչ May 28 '10 at 15:24
@JS Bang just started reading, sounds like something quite advanced but necessary. Thanks for the solution! – Erick May 28 '10 at 15:27
This might be more efficient: /(?!a)a/ (Can't believe we're writing regexen to match nothing :)) – pilcrow May 28 '10 at 15:31
show 3 more comments

A simple and cheap regex that will never match anything is to match against something that is simply unmatchable, for example: \b\B.

It's simply impossible for this regex to match, since it's a contradiction.

References

share|improve this answer
1  
This is the usual solution, more widely-supported than lookaround. – bobince May 28 '10 at 15:30
1  
OK, it's funny that there's a "usual solution" to this. =) – khedron May 28 '10 at 18:04

Instead of trying to not match any characters, why not just match all characters? ^.*$ should do the trick. If you have to not match any characters then try ^\j$ (Assuming of course, that your regular expression engine will not throw an error when you provide it an invalid character class. If it does, try ^()$. A quick test with RegexBuddy suggests that this might work.

share|improve this answer

You want to match nothing at all? Neg lookarounds seems obvious, but can be slow, perhaps ^$ (matches empty string only) as an alternative?

share|improve this answer

^ is only not when it's in class (such as [^a-z] meaning anything but a-z). You've turned it into a literal ^ with the backslash.

What you're trying to do is [^]*, but that's not legal. You could try something like

" {10000}"

which would match exactly 10,000 spaces, if that's longer than your maximum input, it should never be matched.

share|improve this answer
You don't say what regular expression variant you're using, make sure it supports {} as a repetition count before trying this. It works in Python. – user308405 May 28 '10 at 15:22

What about no regex (empty string)?

share|improve this answer
That will match everything trivially. – user308405 May 28 '10 at 15:24

Eh I know this is a little late, but you could simply not read any input if the regex is empty

share|improve this answer

Another very well supported and fast pattern that would fail to match anything that is guaranteed to be constant time:

$unmatchable pattern $anything goes here etc.

$ of course indicates the end-of-line. No characters could possibly go after $ so no further state transitions could possibly be made. The additional advantage are that your pattern is intuitive, self-descriptive and readable as well!

share|improve this answer

Have you tried this simple regex? [^.]*

share|improve this answer
Yep, matches everything. Should match nothing. – Erick May 28 '10 at 15:17
@Erick that's interesting. I'd like to know why... – Earlz May 28 '10 at 15:18
3  
I don't think that . is special when inside a character class. This matches anything that's not a dot. – JSBձոգչ May 28 '10 at 15:18
@Earlz good question, I tried in regex coach, it highlighted everything as weird as it can be. – Erick May 28 '10 at 15:20
3  
. is treated literally inside a character class (as it doesn't really make sense to want to match everything inside one!) – Chris Smith May 28 '10 at 15:20
show 1 more comment

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.