2019-04-06

Removing Quotations from Form Input.

Is there a regular expression that I could remove quotations from the search input before the search is processed? If so, where would I put this and what exactly would it look like.
The reason is because the exact match operator does not work very well on my site. In fact it makes things worse. If someone were to search for John Smith they will get better results than if they search for "John Smith"
I'm not complaining but would simply like to do away with the quotations if a person were to include them
Thank you Anthony
Is there a regular expression that I could remove quotations from the search input before the search is processed? If so, where would I put this and what exactly would it look like. The reason is because the exact match operator does not work very well on my site. In fact it makes things worse. If someone were to search for John Smith they will get better results than if they search for "John Smith" I'm not complaining but would simply like to do away with the quotations if a person were to include them Thank you Anthony
2019-04-11

-- Removing Quotations from Form Input
This is handled in the method parseWordStructConjunctiveQuery in src/models/PhraseModel.php
Best,
Chris
This is handled in the method parseWordStructConjunctiveQuery in src/models/PhraseModel.php Best, Chris
X