With English LIKE searches 'san diego' matches 'SAN DIEGO' , 'SaN DieGo' etc.
We are running into big problems with foreign characters and LIKE
example polish city:
ŁOMIANKI
when doing a LIKE search on this city it only returns cities with the capital Ł
It would be nice if łomianki was also returned but each character is represented differently.
Upper Ł: 0xC5 0x81
Lower ł: 0xC5 0x82
So as a hack I did some sandr statements and would turn a word like branżą to bran*
for the most part this works except when the char is the first char like: *OMIANKI (alpostproc is unacceptable in our jobsearch)
I'm curious to see what other international search engines have done and if you have a solution.
We are running into big problems with foreign characters and LIKE
example polish city:
ŁOMIANKI
when doing a LIKE search on this city it only returns cities with the capital Ł
It would be nice if łomianki was also returned but each character is represented differently.
Upper Ł: 0xC5 0x81
Lower ł: 0xC5 0x82
So as a hack I did some sandr statements and would turn a word like branżą to bran*
for the most part this works except when the char is the first char like: *OMIANKI (alpostproc is unacceptable in our jobsearch)
I'm curious to see what other international search engines have done and if you have a solution.