Questions tagged [accent-sensitive]

Collation which recognizes difference between the accented and unaccented versions of letters for sorting purposes. (opposite of accent-insensitive)

47 questions
1
vote
0 answers

Solr schema. exact accented match and accent insensitive match

I'm trying to figure out how to configure the Solr manage-schema's fieldType to achieve the following: (a) When searching for non-accented strings, the results will be accent insensitive. (b) HOWEVER When performing searching on accented strings,…
setzuiro
  • 427
  • 5
  • 13
1
vote
0 answers

encoding character from MySQL to JSON

My database is totally utf8mb4_unicode_ci encoded but when I try to echo character with accent mark like è ù... it doesn't print (or "send") anything at all. PHP API ob_start(); $Connection = new Connection(); $zones =…
user8025570
0
votes
0 answers

Angular DOM sanitizer: How to keep accents in message input?

I am using DomSanitizer to search if there are any scripts inside an message(a formgroup of the site). The scripting part works, but if I use any accent inside the message, it get's changed . How to solve this? this.formGroup.value.message=…
0
votes
3 answers

Keep accented characters while highlighting text (wrapping in tags)

I am using the following code to search and highlight accented text. The problem I am facing is that it removes accented text while highlighting. Is there anyway to keep accents? echo highlightTerm("Would you like a café, Mister Kàpêk?", "kape…
user934820
  • 1,162
  • 3
  • 17
  • 48
0
votes
0 answers

Accents incoherences in utf-8

I was looking into Matt Parker's problem of finding 5 5-letters words that have in total 25 distinct letters (link if you are interested, not really relevant to the issue), but I wanted to do it using french words (and so I had to use the french…
0
votes
1 answer

Python Unicode Normalize in list of words

I am preprocessing a list of words from a file. I'm struggling to remove accents because the Unicode Normalizer works on strings only. I am getting the following error : TypeError: normalize() argument 2 must be str, not list Any way to remove…
0
votes
2 answers

Issues with accent when using the "separate" function from tidyverse

I am using the separate function from tidyverse to split the first column of this tibble : # A tibble: 6,951 x 9 Row.names Number_of_analysis~ DL_Minimum DL_Mean DL_Maximum Number_of_measur~ Measure_Minimum Measure_Mean…
Sylvain
  • 133
  • 1
  • 10
0
votes
1 answer

How to use PHP array_multisort with accented characters

I currently have a multidimensional array I am sorting using array_multisort, however one of the columns has some special accented characters - for example Développé. Is there a way to sort these characters with their equivalent non accented letter…
PCH
  • 21
  • 2
0
votes
0 answers

Local configuration tu UTF-8 or any that reads accents

Have been trying to load an Excel file that is inside a folder that contains an accent but have not been able to do it. Thorugh the normal process, I get the following Error: ent \<- "2. En proceso/IPP 120-01-2022 Reglamento Ferroviario/Datos/" df…
Paul OHF
  • 53
  • 1
  • 4
0
votes
1 answer

MYSQL: best utf setting for ACCENT sensitive but CASE insensitive

For example, ἐν or Ἐν are the same, but should be distinguished from ἕν/Ἓν. I've tried utf8_bin which seems to be the closest, but is also case sensitive.
Niwa
  • 67
  • 1
  • 5
0
votes
1 answer

Mimekit sending accented characters through Gmail

I'm using C# and MimeKit (AE.Net.Mail) to send email through Gmail. Everything works perfectly, until I have an accented name in the body. I have been unable to figure out how to send the accented characters properly. This is where I am with the…
Brian Kitt
  • 665
  • 1
  • 6
  • 20
0
votes
1 answer

How i can insensitive accent an capital letters in agregattion?

I want to make a query that does not discriminate by accents or upper or lower case, i have this: query && pipeline.unshift({ '$match': { 'name': { '$regex': new RegExp(query, 'i') } } }) I tried a lot of regex but i don't know how i can use it,…
Sergi
  • 1
0
votes
0 answers

MSSQL Unique Index/Key with accent sensitive collate (ss != ß, ...) EF Core Code First

I have a table with a combined key (string + date) where the string is set as nvarchar with collate Latin1_General_CI_AS. My problem is now, that inserting words with 'ß' or 'ss' are threated equally and thus violating the uniqueness constraint.…
0
votes
2 answers

Convert accent characters to normal characters in Liquid

For instance name = Florian Müllner, want name to be Florian MUllner How to covert name with accented characters in Liquid? Read the replace doc, but was not able to figure out. How to use?
user14673850
0
votes
2 answers

Lodash: is there a way to uppercase a word keeping accents with lodash?

Is there a lodash function that would transform "répété" => "RÉPÉTÉ" instead of "REPETE" as it's done by the uppercase function? If not, what's an easy way to perform this in Javascript?
Simon
  • 6,025
  • 7
  • 46
  • 98