Regular expression (* is equivalent to
Answers
Answered by
0
Answer:
match
match*$ means - match, from beginning to end, any character that appears zero or more times. Basically, that means - match everything from start to end of the string. ... The pattern says - the string should start with Matt and end with Jones and there can be zero or more characters (any characters) in between them.
Answered by
0
Answer:
Two regular expressions are equivalent if languages generated by them are same. For example, (a+b*)* and (a+b)* generate same language. Every string which is generated by (a+b*)* is also generated by (a+b)* and vice versa.
HOPE IT HELPS!!!
Similar questions