Can anyone solve this Without Built-In Function ?
Anonymous User
93

Given the Text and we have to find the Pattern
? ->means one characters are missing
* -> means multiple characters are missing

Example:

   Text                         Pattern                            Output
baaabab                         baaa?ab                             TRUE
baaabab                         b*ab                                TRUE
baaabab                         *ab                                  TRUE
baaabab                         ba?ab                                FALSE
Comments (1)