Last active
August 29, 2015 14:23
-
-
Save amjith/1b69ff2612d6aaa7e39a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> import re # regex module from standard library. | |
>>> def fuzzyfinder(user_input, collection): | |
suggestions = [] | |
pattern = '.*'.join(user_input) # Converts 'djm' to 'd.*j.*m' | |
regex = re.compile(pattern) # Compiles a regex. | |
for item in collection: | |
match = regex.search(item) # Checks if the current item matches the regex. | |
if match: | |
suggestions.append((match.start(), item)) | |
return [x for _, x in sorted(suggestions)] | |
>>> print fuzzyfinder('mig', collection) | |
['main_generator.py', 'migrations.py', 'django_migrations.py', 'django_admin_log.py'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment