I asked this previously as a Regex question yet the issue appears to be Sphinx as even the correct Regex set-up failed in Sphinx. So: Is there a way to convert curly apostrophes in the index to straight ones? I have tried:
- Exceptions.text: ’ => '
- regexp using the actual character: regexp_filter=(\w+)\’s=>\1
- regexp using the unicode: regexp_filter=(\w+)\x{2019}s=>\1
And nothing has worked. I get that the ’
may fail because these are text files but not sure why unicode would. In any event the ’
is breaking things for me and I'd hate to do mysql replace on the entire database just for this.