What is a regular expression?
A notation used to describe a pattern of characters in an object or a set
Using a and b, what is the notation used for concatenation?
What does the notation a+ mean?
+ means pattern matches one or more “a”s going {a,aa,aaa,…}
What does the notation a* mean?
What does the notation ab?c mean?
? means it matches the preceding character one or zero times, giving {ab,abc}
What does the notation a | b mean?
means pattern matches the symbol “a” or the symbol “b”
What is the series of rules to follow?
What are the string searching applications, regular expressions can be used in?
What are the definitions of the terms used for the following string searching?
What is a regular language?