I mean, the post "title search" is work fine, but can't handle special characters like ö, ő, ó, ű, í, etc.
Instead of search these, simple skip these characters in the search strings.
I mean, the post "title search" is work fine, but can't handle special characters like ö, ő, ó, ű, í, etc.
Instead of search these, simple skip these characters in the search strings.
Thanks, I already tried these, but not succeed.
What is the good format for edit this line?
re.sub(r'[^A-Za-z0-9.,\-_\'" ]+',
I tried this:
re.sub(r'[^A-Za-z0-9.,öőűúóüíáé?\-_\'" ]+',
But not helped, still not search correctly to these characters.
For now the search goes through a regex filter here and here. You can add the extra characters there and it should allow them.