Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to find a halfway decent regex for a string exactly 8 characters long. Those 8 characters should be comprised of a's followed by b's.

Another way of putting this would be a{n}b{8-n} where n=0...8

Example Matching Strings: aaaaaaaa abbbbbbb aaaabbbb bbbbbbbb

Example Non-Matching Strings: bbbbaaaa aaaabaaa

share|improve this question
What have you tried so far? And what language you are using? – Rohit Jain Jan 30 at 20:34
I think a regex might be overkill here, there are only 8 possible matches in this case, and there will only ever be n possibilities for all n. Which means o(n) isn't that bad compared to the compute power needed for regexes. – Scott Jan 30 at 20:41
@Scott Per spec, there's 10 possibilities as can be shown: {"abbbbbbb","aabbbbbb","aaabbbbb","aaaabbbb","aaaaabbb","aaaaaabb","aaaaaaab", "aaaaaaaa","bbbbbbbb", ""}. Regex could be overkill, but the advantage is the regex can be more quickly altered if the spec changes. – user17753 Jan 30 at 20:47
1  
I think I would recommend (pseudo-code) /a*b*/ && strlen() == 8. Maybe do the strlen() first for quicker rejections depending on the exact mix of what you're going to feed it... – twalberg Jan 30 at 20:54
@RohitJain I'm using Java – AmishDave Jan 30 at 21:15
show 1 more comment

2 Answers

up vote 3 down vote accepted

There are many ways to do it. Here's another alternative:

/^(?=a*b*$).{8}$/

Of course you can switch around what's in the lookahead:

/^(?=.{8}$)a*b*$/
share|improve this answer
1  
Not exactly a true solution like @acheong87's, but I'd probably do something like (s.match(/^a*b*$/) && s.length == 8) where s is the string of interest. Probably the easiest to read. – user17753 Jan 30 at 20:57
@user17753 - That's what I'd do myself. – acheong87 Jan 30 at 21:13
1  
Or rather (s.length == 8 && s.match(/^a*b*$/)) if the EMCA implementation short-circuits? – user17753 Jan 30 at 21:19
@user17753 - It does, though, eh, probably not a worthwhile optimization. – acheong87 Jan 30 at 21:47

You can use a positive lookahead to limit the length, and otherwise, it's fairly simple.

/^(?=[ab]{8}$)a{0,8}b{0,8}$/
share|improve this answer
Just adding this tidbit in case someone reads this and doesn't realize the syntax: "The syntax is {min,max}, where min is a positive integer number indicating the minimum number of matches, and max is an integer equal to or greater than min indicating the maximum number of matches." Read more. – user17753 Jan 30 at 20:50
@Vulcan ?= is a positive lookahead. – Michael Jan 30 at 21:07
@Michael Indeed it is, my bad. Thanks Rohit for fixing my mistake. – Vulcan Jan 31 at 0:48

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.