Regular expressions over {a, b} for all non empty strings of even length
Write a Regular expressions defined over {a, b} for all non empty strings of even length.
(aa + ab + ba + bb)+
Valid strings: (must be accepted by our Regular Expression
Strings of length 1: No valid strings
Strings of length 2: aa, ab, ba, bb,………and many other similar strings.
Strings of length 3: No valid strings
Strings of length 4: aaab, aaba, aabb, abba, abaa, bbaa,………and many other similar strings.
Strings of length 5: No valid strings
Strings of length 6: aaaaab,…..abbabbbb,………and many other similar strings.
Note: Many other strings of lengths 8, 10, 12, ….etc are valid. You can try it by yourself.
Invalid strings: (must be Rejected by our Regular Expression
Strings of length 1: a, b, no other string
Strings of length 2: all strings are valid
Strings of length 3: aaa, bbb, aab, baa,………and many other similar strings
Note:
- Many other strings of even lengths like 4, 6, 8, 10, 12, ….etc are valid.
- Many other strings of odd lengths like 5, 7, 9, ….etc are invalid.
You can try it by yourself.
Write a Regular expressions defined over {0, 1} for all non empty strings of even length.
(00 + 01 + 10 + 11)+
Similar regular Expression
- Regular expressions for all non empty strings
- Regular expressions for all non empty strings of even length
- Regular expressions for all non empty strings of odd length
More Examples of Regular Expression
- Regular Expression for no 0 or many triples of 0’s and many 1 in the strings.
- RegExp for strings of one or many 11 or no 11.
- Regular expressions for all non empty strings
- Regular expressions over {a, b} for all non empty strings of even length
- Regular expressions for all non empty strings of odd length
- A regular expression for ending with abb
- A regular expression for all strings having 010 or 101.
- Regular expression for Even Length Strings defined over {a,b}
- Regular Expression for strings having at least one double 0 or double 1.
- Regular Expression of starting with 0 and having multiple even 1’s or no 1.
- Regular Expression for an odd number of 0’s or an odd number of 1’s in the strings.
- Regular Expression for having strings of multiple double 1’s or null.
- Regular Expression (RE) for starting with 0 and ending with 1.
- RE for ending with b and having zero or multiple sets of aa and bb.
- A regular expression of the second last symbol is 1.
- RE for starting with 1 having zero or multiple even 1’s.
- Regular Expression for multiple a’s and multiple b’s.
- RE for exactly single 1 many 0’s |exactly single a many b.
- A regular expression for strings starting with aa and ending with ba.
- A regular expression for the language of all consecutive even length a’s.
- A regular expression for the language of all odd-length strings
- A regular expression for the language of all even length strings but ends with aa.
- A regular expression for the language of an odd number of 1s.
- A regular expression for the language of even length strings starting with a and ending with b in theory of automata.
- A regular expression for the language of all even length strings but starts with a.
- A Regular Expression for the Language of all strings with an even number of 0’s or even number of 1’s.
- A regular expression for the language of all those strings end with abb.
- A regular expression for string having must 010 or 101.
- Regular expression of strings begin with 110
Regular expression of strings begin and end with 110
Regular expression of strings containing exactly three consecutive 1’s. - A Regular Expression of all strings divisible by 4.
- A Regular Expression Strings that does not contain substring 110.