The questions asks to find a regular expression for strings containing the substring aba over the alphabet {a, b}.

Does this mean anything can precede/procede aba so that the regular expression would be:

(aUb)*(aba)*(aUb)*

or is the question simply looking for:

(aba)*

Note: U means union and * means 0 or more times.

link|improve this question
feedback

3 Answers

Since * means 0 or more, ε is in the first language, while you do not want it (it doesn't contain aba). You are looking for (aUb)*aba(aUb)*.

link|improve this answer
feedback

A substring is defined as

noun

a string that is part of a longer string

Also note that the second expression is a subset of the first.

link|improve this answer
feedback

The former: any string that contains aba at least once.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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