regular expression dictionary search
dorje tarap
dorjetarap at googlemail.com
Sat Aug 18 14:39:18 EDT 2007
Hi
I have a dictionary with a list of patterns:
Code: ( text )
1. >>> words = {'sho.':6, '.ilk':8,'.an.':78 }
Where the "." character means any pattern - this can easily be changed to
the "*" symbol if need be.
When the user submits a word, I want to be able to look for a corresponding
pattern (if it exists). For example if the user said "show" or "shoe", then
the value 6 would be returned. If it was "band", "land", "sand", "pant" etc
then 78 would be returned - but not "pants" as it is longer than the
pattern.
I know the normal way is to provide the reg exp and search the dictionary
with it, but this is the other way round :(
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20070818/3b6fe4d0/attachment.html>
More information about the Python-list
mailing list