Does rapidfuzz work with other languages than English? #203
-
I am working with Asian languages like Japanese, Chinese. Does rapidfuzz work with non-ascill characters? Thanks for clarification. |
Beta Was this translation helpful? Give feedback.
Answered by
maxbachmann
Mar 25, 2022
Replies: 1 comment 18 replies
-
Yes RapidFuzz works with any unicode characters. Note however that many of the implementations have an optimized implementation for characters below 256 (extended ascii), since it can directly look those up in an array[256] which is not possible for the full unicode range. So when you run into performance problems it might help to transform the most common characters of the language to ascii characters. |
Beta Was this translation helpful? Give feedback.
18 replies
Answer selected by
maxbachmann
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes RapidFuzz works with any unicode characters.
Note however that many of the implementations have an optimized implementation for characters below 256 (extended ascii), since it can directly look those up in an array[256] which is not possible for the full unicode range. So when you run into performance problems it might help to transform the most common characters of the language to ascii characters.