Jump to content
  • 0

Accent mark


israel

Question

Hi, I write from Mexico.

I would like to know if there is a way to make the finder ignore accent marks. I've captured in my database words like "Juárez" but I would like the finder to report results even if the public type "Juarez" (whithout the "´" mark in "a"). Is that possible?

Thank you in advance.

Israel.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Hello Israel!

The solution really depends on how technical you are. If you can manage SQL queries, you can try using COLLATE with latin1 (ASCII) to perform this:

SELECT * 
FROM Table 
WHERE Name COLLATE Latin1_General_CI_AI Like '%cafe%' COLLATE Latin1_General_CI_AI

If you are not too technical, you can use a simple SOUNDEX query

The application is extremely simple: if you type soundex(value), the query returns 'V400'. It is designed to group 'similar' words, but it also ignores diacritics

SELECT SOUNDEX(VALUE)

Here is the source document:

https://docs.microsoft.com/en-us/sql/t-sql/functions/soundex-transact-sql?view=sql-server-ver15

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...