krisk / Fuse

Lightweight fuzzy-search, in JavaScript
https://fusejs.io/
Apache License 2.0
18.29k stars 772 forks source link

Match result seems to be incorrect if the search input have spaces #781

Open ldalzottomp opened 1 week ago

ldalzottomp commented 1 week ago

Is there an existing issue for this?

Description of the bug

FuseJS 7.0.0

Tested on FuseJS 6.6.2 as well. Same issue.

When the search input have spaces, the match result seems to be incorrect. More details in the following example.

The Fuse.js version where this bug is happening.

Other (please specify in description)

Is this a regression?

Which version did this behavior use to work in?

None

Steps To Reproduce

Connect to the live demo : https://www.fusejs.io/demo.html Search for "Lock A" Set includeMatches to true in the options.

Expected behavior

The first result is "The Lock Artist". And the match indices doesn't include the space before "Lock". Current result returns match indices of 3,9 . Which is " Lock A". (note, last index is included).

Or am I missing something?

Screenshots

Screenshot 2024-10-14 at 10 23 49

Additional context

No response

ldalzottomp commented 1 week ago

After thinking about this, I am not sure that this is an issue really.