How can I search for a filename ENDING with a certain char?
Posted: 05 Jul 2013 14:34
I'm trying to find filenames ending with "_" .
I'm also trying to find filenames with "_" occurring anywhere BUT the end.
Using a pattern match (? *) works if that is the first char, but not if the last char.
E.g.,: searching for a* gets results but *a does not (even though there ARE filenames with /a/ occurring after the 1st char.
I'd prefer not to use RegExp (very rusty on that.)
I'm also trying to find filenames with "_" occurring anywhere BUT the end.
Using a pattern match (? *) works if that is the first char, but not if the last char.
E.g.,: searching for a* gets results but *a does not (even though there ARE filenames with /a/ occurring after the 1st char.
I'd prefer not to use RegExp (very rusty on that.)