We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Originally reported by: Brian (Bitbucket: eode, GitHub: eode)
#!python import fuzzy fdm = fuzzy.DMetaphone() fdm10 = fuzzy.DMetaphone(10) # note that this also trounces the 's' phoneme of 'decent' >>> fdm('decent') ['TKNT', None] >>> fdm('decentralization') ['TKNT', None] >>> fdm10('decentralization') ['TKNT', None] # ..for comparison: import metaphone mdm = metaphone.dm >>> mdm('decent') ('TSNT', '') >>> mdm('decentralization') ('TSNTRLSXN', '')
Expected behavior:
The text was updated successfully, but these errors were encountered:
Original comment by Brian (Bitbucket: eode, GitHub: eode):
..edited for formatting, and added expected behavior
Sorry, something went wrong.
Original comment by Sam Ockman (Bitbucket: NewStart, GitHub: NewStart):
Yes, this has bitten me too...
Here's an example I ran across:
for carbohydrate fuzzy gives KRPH as opposed to KRPHTRT for the original library.
It would be great to get this fixed.
Thanks!
No branches or pull requests
Originally reported by: Brian (Bitbucket: eode, GitHub: eode)
Expected behavior:
The text was updated successfully, but these errors were encountered: