Skip to content

Regular expression for language which consist of exactly two b’s over the set ∑={a,b}

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for language which consist of exactly two b’s over the set ∑={a,b} =>  a*ba*ba*

Continue ReadingRegular expression for language which consist of exactly two b’s over the set ∑={a,b}

Regular expression for all binary string with at least 3 characters and 3rd character should be zero

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for all binary string with at least 3 characters and 3rd character should be zero =>  (0+1)(0+1)0(0+1)*

Continue ReadingRegular expression for all binary string with at least 3 characters and 3rd character should be zero

Regular expression for string start with 1 and end with 0

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for string start with 1 and end with 0 =>  1(0+1)*0

Continue ReadingRegular expression for string start with 1 and end with 0

Regular expression for string end with abb

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for string end with abb =>(a+b)*abb

Continue ReadingRegular expression for string end with abb

Regular expression for string of 0 and 1 end with 00

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for string of 0 and 1 end with 00 => (0+1)*00

Continue ReadingRegular expression for string of 0 and 1 end with 00

Regular expression for string starts and ends with same character

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for String starts and ends with same character 0(0+1)*0     or 1(0+1)*1 or a(a+b)*a or b(a+b)*b

Continue ReadingRegular expression for string starts and ends with same character

Regular expression for binary number starts and end with 1

  • Post author:Educate
  • Post published:September 11, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for binary number starts and end with 1. => 1(0+1)*1

Continue ReadingRegular expression for binary number starts and end with 1

Regular expression for binary number end with 1

  • Post author:Educate
  • Post published:September 9, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for binary number end with 1 =>  (0+1)*1

Continue ReadingRegular expression for binary number end with 1

Regular expression for binary number end with 0

  • Post author:Educate
  • Post published:September 9, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for binary number end with 0 =>   (0+1)*0

Continue ReadingRegular expression for binary number end with 0

Regular expression for 1 or more occurrence of either a or b or both

  • Post author:Educate
  • Post published:September 9, 2023
  • Post category:FLAT
  • Post comments:0 Comments

Regular expression for 1 or more occurrence of either a or b or both =>     (a+b)+

Continue ReadingRegular expression for 1 or more occurrence of either a or b or both
  • Go to the previous page
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • …
  • 43
  • Go to the next page
© Educate - All Rights Reserved