krmanik / Sentence-Adder-Anki-Addon

Add sentences to Anki editor window in one click
GNU Affero General Public License v3.0
14 stars 6 forks source link

Problem with word matching #4

Closed ghost closed 3 years ago

ghost commented 3 years ago

If a word is contained within another word, for example et is contained within toilette Then the sentence generator considers toilette as a valid sentence for et, which it isn't obviously and et is a different word in french.

krmanik commented 3 years ago

I figured it out. https://github.com/infinyte7/Sentence-Adder-Anki-Addon/blob/main/src/editor.py#L69

For Chinese sentences it works perfectly because Chinese sentences do not contains spaces. But codes needs to change for language which contains spaces.

Added space before and after %

sql = "Select sentence from examples where sentence like " + "' %" + word + "% '"

It will work.

To be updated

krmanik commented 3 years ago

Download updated addon from AnkiWeb and try it. It will work now with spaces also.

ghost commented 3 years ago

Working!