The alphabets of a regular language are ∑={a,b,c}
I need create regular expression for:
a.) Accepts strings that do not have two 'b' characters next to each other. example: aabccbaaccb <- allowed aabccbaaccbb <- not allowed
b.) Accepts strings with at least one character 'a' between two characters 'b'. example: babaaaaaab <- allowed babaaaaaabcb <- not allowed
Created regular expression need to be ready for that it can be tested with JFLAP.
Here is what Regular Expression I have already try to create
For task A:
(For some odd reason JFLAP uses
!
to represent the empty string, i.e. ϵ)For task B: