mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
fix: Change the tokenizer to accept quotes
This commit is contained in:
parent
af91bfa11f
commit
98899d3ea0
@ -24,7 +24,7 @@ impl<'a> Tokens<'a> {
|
|||||||
fn new(string: &str) -> Tokens {
|
fn new(string: &str) -> Tokens {
|
||||||
Tokens {
|
Tokens {
|
||||||
index: 0,
|
index: 0,
|
||||||
inner: string.trim_matches(&[' ', '.', ';', ',', '!', '?', '-'][..]),
|
inner: string.trim_matches(&[' ', '.', ';', ',', '!', '?', '-', '\'', '"'][..]),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -62,7 +62,7 @@ impl<'a> Iterator for Tokens<'a> {
|
|||||||
for (i, c) in self.inner.char_indices() {
|
for (i, c) in self.inner.char_indices() {
|
||||||
let separator = match c {
|
let separator = match c {
|
||||||
'.' | ';' | ',' | '!' | '?' | '-' => Some(Long),
|
'.' | ';' | ',' | '!' | '?' | '-' => Some(Long),
|
||||||
' ' => Some(Short),
|
' ' | '\'' | '"' => Some(Short),
|
||||||
_ => None,
|
_ => None,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user