I am attempting to search for a string of characters similar to the following: 10.1(a)(iii). The following wildcard search string works for strings similar to 10.1(a): [0-9][0-9].[0-9]([abc])
However, when I add the second ([abc]) it fails. I also tried using ([abc]){1,2} with no success. Any ideas on how I can use wildcards to find the string 10.1(a)(iii)?
Thanx in advance… trish