vote up 3 vote down star
2

Is there a simple way to support wildcards ("*") when searching strings - without using RegEx?

Users are supposed to enter search terms using wildcards, but should not have to deal with the complexity of RegEx:

"foo*"   =>  str.startswith("foo")
"*foo"   =>  str.endswith("foo")
"*foo*"  =>  "foo" in str

(it gets more complicated when there are multiple search terms though, e.g. "foo*bar*baz")

This seems like a common issue, so I wonder whether there's a ready-made solution for it.

Any help would be greatly appreciated!

flag
For asking normal programming questions, please don't mark your question as "community wiki". Nobody (including you) gets any reputation for that kind of question. I see you're new here, so no worries, just keep that in mind for next time. – Greg Hewgill Oct 26 '08 at 21:03
What's wrong with regular exceptions? – Hortitude Oct 26 '08 at 21:04

3 Answers

vote up 6 vote down check

You could try the fnmatch module, it's got a shell-like wildcard syntax.

link|flag
vote up 0 vote down

Thanks, that's exactly what I needed!

link|flag
Thank in a comment – Vinko Vrsalovic Oct 26 '08 at 21:10
vote up 0 vote down

Thanks for the helpful comments - unfortunately, I cannot add comments myself (requires 50 reputation). Will stick to the conventions next time. (Though I'm not sure what the "community wiki" checkbox is for... )

What's wrong with regular exceptions?

Making regular users understand simple wildcards is no big deal, but most are never gonna understand RegEx (for example, they might end up wondering why "x*z" matches "xxz", not "xyz").

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.