Assuming you have a a set E = {a,b}, and you have a superset E* consisting of all possible combinations of a, and b in E. How do you construct an expression for a String that has number of a's divisible by 3?

link|improve this question

52% accept rate
Is this a homework problem? – rfausak Sep 23 '11 at 16:30
no, it is from a book. Do you know how to work this? – Kobojunkie Sep 23 '11 at 16:32
feedback

1 Answer

up vote 0 down vote accepted

Try

/^(b*ab*ab*ab*)+$/

Examples:

abbb => N
bbb => N
aaab => Y
ababbbba => Y
aaabba => N
bbbaaaabbbabbbba => Y
 => N
link|improve this answer
Is there another way to define this language that did not include actually having a's in there as you have it? – Kobojunkie Sep 23 '11 at 17:06
Maybe /^((b*a){3}b*)+$/? I'm not sure what you are asking. – rfausak Sep 23 '11 at 17:26
feedback

Your Answer

 
or
required, but never shown

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