I made a basic regexp_filter in Sphinx to remove apostrophes:
regexp_filter=(\w+)\'s=>\1
However discovered it is not working on curly apostrophes e.g.
books’s
even if I do
(\w+)[\'’]s
Because sphinx uses a vanilla text editor for it's configuration and appears to not differentiate. In other words while the above regex will work in any regex editor it is not being recognized when it parses in the sphinx configuration file as regexp_filter.
Is there some special character I can use instead in the regex/regexp? I'd prefer to do that vs a global database replace naturally.