You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As in the title. I assume it has something to do with the way Whoosh processes it, but none of the ways I know to escape ampersand worked. What I've tried:
"R&D"
'R&D'
R&D
R D
R*D
The text was updated successfully, but these errors were encountered:
Hi @marcxm. The trouble here is that R&D will get "tokenised" into ["R", "D"] with the ampersand thrown away as irrelevant. Then, these tokens are also filtered out as they are single characters.
There are likely some tweaks that can be done here but experience in other capacities has taught me to tread carefully with full text indexing logic, so this may have to wait until I have some time to consider a solution and the implications it would come with.
As in the title. I assume it has something to do with the way Whoosh processes it, but none of the ways I know to escape ampersand worked. What I've tried:
"R&D"
'R&D'
R&D
R D
R*D
The text was updated successfully, but these errors were encountered: