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
Maybe need some patch when search Chinese? When we use Chinese, we don't split word by space. Just like this below.
When we run this code :
func main() { str := "猫和狗" pattern := "猫 狗" fmt.Print(fuzzy.Match(pattern, str)) }
the output is: false But I think it may should be true, because 猫 and 狗 is two words in str, "猫和狗".
false
true
猫
狗
str
"猫和狗"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe need some patch when search Chinese? When we use Chinese, we don't split word by space. Just like this below.
When we run this code :
the output is:
false
But I think it may should be
true
, because猫
and狗
is two words instr
,"猫和狗"
.The text was updated successfully, but these errors were encountered: