by dexter » Sat Nov 10, 2001 9:32 pm
How are you entering your filters? Most the ones you mentioned work. Specifically:
Fat_Ugly_Woman! works
Fat_Ugly_Woman\! works, "!" is escaped but doesn't need to be
Fat_Ugly_Woman* works, the asterisk in this case means 0 or more "n" characters
Fat\_Ugly\_Woman works, the underscores are escaped but don't need to be.
*Fat\_Ugly\_Woman* works, same reasons as previous two
Fat[_]Ugly[_]Woman works, the underscore is listed as a set of characters to match
*Fat_Ugly_Woman* works, first asterisk is ignored, 2nd works by accident because it matches 1 "n".
Fat Ugly Woman does not work unless there are really spaces there
Fat.Ugly.Woman works, the "." means "match any single character"
Fat and Ugly and Woman will not work.
Hope this helps.