The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
24 views

AutoCompleteBox Windows Phone Ignore Diacritics (Accent - insensitive) C# [duplicate]

I´m using AutoCompleteBox in my App and I want to ignore diacritics mark ('š', 'á', ...) while AutoCompleteBox searching in items. If user write 'sko', then AutoCompleteBox show 'škola'. Can someone ...
0
votes
0answers
170 views

Use of sqlite3_create_collation on iPhone

I would like to create a collation in order to make case insensitive and no accents searches in a database. here is my code : static int sqlite3NoCaseNoAccentCollate(void * foo, int ll, const void ...
2
votes
0answers
122 views

Make jquery :Contains accent insensitive

I have this case insensitive custom selector : jQuery.expr[':'].Contains = function(a,i,m) { var text = jQuery(a).text().toUpperCase(); var words = m[3].split(/\s+/); for(var i = 0; i ...
3
votes
1answer
208 views

Questions about accent insensitivity in SQL Server (Latin1_General_CI_AS)

All our databases were installed using the default collation (Latin1_General_CI_AS). We plan to change the collation to allow clients to search the database with accent insensitivity. Questions: ...
2
votes
1answer
90 views

Search without accents must return words with accents

I have a web app developed with Hibernate, Spring and Java, that accesses an Informix database... Imagine you are searching for a certain record with an accent on it, like "María", but you write ...
2
votes
2answers
166 views

MySQL REGEXP query - accent insensitive search

I'm looking to query a database of wine names, many of which contain accents (but not in a uniform way, and so similar wines may be entered with or without accents) The basic query looks like this: ...
1
vote
1answer
360 views

SQLite accent-insensitive search

Is there any way to do an accent-insensitive LIKE query in SQLite? For example, this query: SELECT * FROM users WHERE name LIKE "Andre%" would return: André the Giant Andre Agassi etc. I'm using ...