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

Need regex for 0|1, except the letters can't repeat.

So:

101010 - valid
010101 - valid
110011 - invalid
share|improve this question
2  
What have you tried? – CaffGeek Oct 2 '12 at 20:39
6  
People voted down because you asked for an answer without showing that you had attempted the problem yourself. – Jordan Kaye Oct 2 '12 at 20:43

closed as not a real question by Pascal Cuoq, stema, M42, andrewsi, Graviton Oct 6 '12 at 6:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 2 down vote accepted
1?(01)*0? // matches alternating 1s and 0s
^1?(01)*0?$ // same as above but only whole strings
share|improve this answer

Well, this is pretty trivial:

(?=[01])0?(?:10)*1?
share|improve this answer
3  
I wouldn't call that trivial... – CaffGeek Oct 2 '12 at 20:45
Why do you include the Followed-By directive? It seems to perform the same with and without it. – Wug Oct 2 '12 at 20:49
@CaffGeek: I didn't have the look-ahead when I wrote that. It's probably not so trivial with that. – KRyan Oct 2 '12 at 23:58
@Wug: Because 0?(?:10)*1? can legally match an empty string. I use the (?=[01]) to make sure we're getting at least one character (i.e. at least one 0 or 1). – KRyan Oct 2 '12 at 23:59

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