A regular expression for string having must 010 or 101

A regular expression for string having must 010 or 101.

Regular expression : (0+1)*(010+101)(0+1)*

 

Finite automata for strings must have 010 or 101 in the language

Finite automata for strings must have 010 or 101 language

ACCEPTABLE STRINGS(PART OF THIS LANGUAGE)

These strings are part of the given language and must be accepted by our Regular Expression.

  • strings of length 1 = no string exist.
  • strings of length 2 = no string exist
  • strings of length 3 = {101, 010,no more string}
  • strings of length  4 = { 0101, 1011, 0100,…and many more similar strings}
  • Strings  of  length 5 = {10101, 11011, 01010,…and many more similar strings}
  • Strings  of length  7= {1010110, 1101011, 1101110,…and many more similar strings}
  • Strings  of length  10 ={0000101011, 1000101001, 1101011011,…and many more similar strings}
  • Strings  of length  15 = {00001010100001, 011110100010001, 110101101100100,…and many more similar strings}
  • Strings  of length 20 = {0000101010000111000, 0111010001000100111, 11010110110010011100,…and many more similar strings}
  • 3 string of length 25 ={000010101000011100011011, 011101000100010011100011, 1101011011001001110011010,…and many more similar strings}
  • and many more similar strings

Unacceptable strings(not part of this language

These strings are not part of the given language and must be rejected by our Regular Expression.

  • Strings  of length 1={1 ,0, no more string}
  •  Strings  of length 2 = {00,11,10, 01}
  • Strings  of lenth  5 ={11100,00000,01100,…and many more similar strings}
  • Strings  of length 7 ={1111000, 1100011, 0000111,…and many more similar strings}
  • Strings  og length  10 ={1111000111, 1110000111, 0000111100,…and many more similar strings}
  • Strings   of  length 25={00001111111000011111, 1110000111100001110000000, 00001111110000011110000000,…and many more similar strings}
  • and many more similar strings

 


Regular expression for string having must aba or bab

Regular expression : (a+b)*(aba+bab)(a+b)*

ACCEPTABLE STRINGS(PART OF THIS LANGUAGE)

These strings are part of the given language and must be accepted by our Regular Expression.

  • strings of length 1 = no string exist.
  • strings of length 2 = no string exist
  • strings of length 3 = {bab, aba,no more string}
  • strings of length  4 = { abab, babb, abaa,…and many more similar strings}
  • Strings  of  length 5 = {babab, bbabb, ababa,…and many more similar strings}
  • Strings  of length  7= {bababba, bbababb, bbabbba,…and many more similar strings}
  • Strings  of length  10 ={aaaabababb, baaababaab, bbababbabb,…and many more similar strings}
  • Strings  of length  15 = {aaaabababaaaab, abbbbabaaabaaab, bbababbabbaabaa,…and many more similar strings}
  • Strings  of length 20 = {aaaabababaaaabbbaaa, abbbabaaabaaabaabbb, bbababbabbaabaabbbaa,…and many more similar strings}
  • 3 string of length 25 ={aaaabababaaaabbbaaabbabb, abbbabaaabaaabaabbbaaabb, bbababbabbaabaabbbaabbaba,…and many more similar strings}
  • and many more similar strings

Unacceptable strings(not part of this language

These strings are not part of the given language and must be rejected by our Regular Expression.

  • Strings  of length 1={b ,a, no more string}
  • Strings  of length 2 = {aa,bb,ba, ab}
  • Strings  of lenth  5 ={bbbaa,aaaaa,abbaa,…and many more similar strings}
  • Strings  of length 7 ={bbbbaaa, bbaaabb, aaaabbb,…and many more similar strings}
  • Strings  og length  10 ={bbbbaaabbb, bbbaaaabbb, aaaabbbbaa,…and many more similar strings}
  • Strings   of  length 25={aaaabbbbbbbaaaabbbbb, bbbaaaabbbbaaaabbbaaaaaaa, aaaabbbbbbaaaaabbbbaaaaaaa,…and many more similar strings}

More Examples of Regular Expression 

  1. Regular Expression for no 0 or many triples of 0’s and many 1 in the strings.
  2. RegExp for strings of one or many 11 or no 11.
  3. A regular expression for ending with abb
  4. A regular expression for all strings having 010 or 101.
  5. Regular expression for Even Length Strings defined over {a,b}
  6. Regular Expression for strings having at least one double 0 or double 1.
  7. Regular Expression of starting with 0 and having multiple even 1’s or no 1.
  8. Regular Expression for an odd number of 0’s or an odd number of 1’s in the strings.
  9. Regular Expression for having strings of multiple double 1’s or null.
  10. Regular Expression (RE) for starting with 0 and ending with 1.
  11. RE for ending with b and having zero or multiple sets of aa and bb.
  12. A regular expression of the second last symbol is 1.
  13. RE for starting with 1 having zero or multiple even 1’s.
  14. Regular Expression for multiple a’s and multiple b’s.
  15. RE for exactly single 1 many 0’s |exactly single a many b.
  16. A regular expression for strings starting with aa and ending with ba.
  17. A regular expression for the language of all consecutive even length a’s.
  18. A regular expression for the language of all odd-length strings
  19. A regular expression for the language of all even length strings but ends with aa.
  20. A regular expression for the language of an odd number of 1s.
  21. A regular expression for the language of even length strings starting with a and ending with b in theory of automata.
  22. A regular expression for the language of all even length strings but starts with a.
  23. A Regular Expression for the Language of all strings with an even number of 0’s or even number of 1’s.
  24. A regular expression for the language of all those strings end with abb.
  25. A regular expression for string having must 010 or 101.
  26. 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.
  27. A Regular Expression of all strings divisible by 4.
  28. A Regular Expression Strings that does not contain substring 110.

Tutorial: Regular Expression

A detailed tutorial of the regular expression is here in the link of regular expression tutorial. This page contains the practice questions of regular expressions with solutions.

Tutorial covering the topics

  • Give a regular expression.
  • Describe the strings of the regular expression.
  • write a regular expression.
  • create all strings from regular expression.
  • Generate all strings from regular expression.
  • Extract all strings from regular expression.
  • Find all strings from regular expression.
  • Examples of regular expression.