Hi,
              Write a function which takes two char * s as inputs, one is a
regular expression pattern and the other is a test string and check whether
the test string is of the given regular expression pattern.
The regular expression pattern can contain all lower-case letter, asterisk
and question mark.
As usual asterisk stands for 0 or more number of chars and ? for any one
char.
E.g. Regular Expression: a*b?c
Test String: aaavcxbmbcxmbkc
Result: TRUE
Test String: abc
Result: FALSE
Test String: abzx
Result: TRUE

What is d best way 2 do this...

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to