vote up 3 vote down star

What is a regexp that accepts everything over the language {0,1} but has no substring 110 or 101?

Accept:

  • 111111
  • 000011111
  • 100001000001001
  • 010
  • 1

Reject:

  • 100110
  • 010100
  • 123

Edit: Per comments on answers below, this question is asking for a formal regular expression.

flag

So you're only talking about numbers consisting of only one number? – Franz Nov 8 at 14:45
What about 1000000 – Greg Nov 8 at 14:46
@greg that doesn't have the substring 110 or 101 so it's valid. – Absolute0 Nov 8 at 14:48
Thought so... so @Franz's assumption is incorrect – Greg Nov 8 at 14:49
Thinking about it again, I was not completely wrong. But I was trying to do whitelisting (and didn't go all the way), so Greg's answer IS correct and much easier also. – Franz Nov 8 at 14:56
show 4 more comments

5 Answers

vote up 2 vote down check

Limited to formal regular expression notation:

((1|0*|0*1)(000*))*0*(10*|1*)
link|flag
Can this be simplified? It seems a bit to obfuscated. – Absolute0 Nov 14 at 17:24
I would think so, but my brain got awfully twisted just coming up with this. It's been too long since I studied DFAs and formal regular expressions. – Jeremy Stein Nov 14 at 19:29
vote up 6 vote down

You'd be best off checking if it doesn't match /101|110/

link|flag
I don't think it's that simple. not matching those 3 characters enforces a string of at least 3. My requirement is any string, including the empty string. – Absolute0 Nov 8 at 14:49
4  
That won't enforce a string length - you just need to do something like (php) if (!preg_match('/101|110/', $str)) {} – Greg Nov 8 at 14:50
1  
@Absolute0, if this is an academic exercise, you should have said so in your original question. This is a programming Q&A site so it is not strange that Greg thought you were using some regex library from a programming language. – Bart K. Nov 8 at 15:00
1  
This would work if used in conjunction with a positive check for \A[01]*\z. But it's simpler to do it in a single expression with a negative lookahead. – Peter Boughton Nov 8 at 15:09
1  
so, /^[01]*$/ && !/101|110/ ? – roe Nov 8 at 15:11
show 2 more comments
vote up -1 vote down

This should work:

/^([01])\1*$/
link|flag
It basically checks for there being a zero or one at the beginning of the string, and then multiple (or no) occurrences of that same number after the first digit. – Franz Nov 8 at 14:47
1  
That would reject 1001001 which does not contain either 101 or 110 so should be accepted. – Bart K. Nov 8 at 14:50
Why are you escaping the "1" in "\1" – Absolute0 Nov 8 at 14:50
1  
@Absolute0, Franz is back referencing what is matched in group 1. – Bart K. Nov 8 at 14:51
I'm not escaping it. It's a backreference and thus checking for the same string that was found inside the first pair of parenthesis. And sorry. Looks like I didn't read everything... – Franz Nov 8 at 14:52
show 1 more comment
vote up 4 vote down

This seems to work, assuming that your regex engine supports lookahead.

/^(1(?!01|10)|0)*$/
link|flag
If Absolute0's question is an academic one, look-arounds are out of the question, I guess. – Bart K. Nov 8 at 15:07
vote up 11 vote down

This is the solution (even without lookahead):

/^0*(11*$|10$|100+)*$/
  • Start off with any number of zeros.
  • Loop (know: the string parsed so far does not end with "1" or "10")
    • "1$" is ok (&stop)
    • If you find "11", then you can't read any thing except ones until you reach the end
    • "10$" is ok.
    • If you read "10" and want to go on, read one or more zeros. Then go back to the loop.
link|flag
I did not test it, but it looks like you nailed it: well done! +1 – Bart K. Nov 8 at 15:11
$ is a look-ahead, and is not part of a formal regular expression. – Jeremy Stein Nov 9 at 16:33
@Jeremy: $ is the "end of string" condition. you can call it \z if you want. – Yaakov Belch Nov 9 at 19:44
I think a zero-width assertion is technically a look-ahead, but whatever you want to call it, it's not part of a formal mathematical regular expression. – Jeremy Stein Nov 10 at 2:57

Your Answer

Get an OpenID
or

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