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
4
votes
2 answers

Remove accents on a string field in mysql query

I have the following query: SELECT * FROM main_creditperson WHERE name="Irene Olga López" This will reutrn: id name 366354 Irene Olga López Is there a simple way to do this in the query so the result is removed of all accents? id …
David542
  • 104,438
  • 178
  • 489
  • 842
3
votes
1 answer

How to avoid capitalizing letters following unicode accents with regex

I've been looking for a solution to my regular expression problem for a few hours and days. Here is an example of a string and I try to capitalize the first letters: test-de'Maëly dUIJSENS With /\b[a-zA-Z]/g I manage to isolate the first letter…
djconcept
  • 39
  • 1
3
votes
1 answer

How to ignore accents in Spring JPA findBy repository?

Lets say we have this repository: public interface DeviceTypeRepository extends CrudRepository, JpaSpecificationExecutor { public Iterable findByNameContaining(String name); } How to obtain…
NaN
  • 8,596
  • 20
  • 79
  • 153
3
votes
1 answer

Accent mark in R-Shiny app

I am new to shiny and am trying to input html tags for adding some header text but the words that contain an accent mark (as very usual in spanish) results in error. For example, the code below produces what I want: library(shiny) ui <- fluidPage( …
Cris
  • 325
  • 1
  • 5
  • 20
3
votes
1 answer

How to use accents on odoo 10

I'm trying to use accent while creating my odoo module in french. in my xml files, I have: UTF-8 encoding like this: but the code always generate errors when i use Accents!
Boston Kenne
  • 778
  • 10
  • 15
2
votes
1 answer

stringi R ignore accents special characters to match

I have two dataframes columns, one containing names with accents and the other don't. I want to match them but only exact matches are performed. For example: df<-data.frame(not_accented=c("ACARAU CE","ADRIANOPOLIS PR", "AFUA PA","AMAPARI AP","AGUA…
CelloRibeiro
  • 160
  • 11
2
votes
0 answers

Search that does not take accents into account

I'm doing a search engine that doesn't take capital letters, minuscules or accents into account. I've done this but the accents part doesn't work well for me. @Override public CResponse getAll(int page, int size, String name) { CResponse…
Pat
  • 21
  • 2
1
vote
2 answers

improve replace function in javascript

I am trying to perform this function in a cleaner way, could you give me a hand? function removeAccents(text) { var text = text.replace(/á/g, "a").replace(/é/g, "e").replace(/í/g, "i").replace(/ó/g, "o").replace(/ú/g, "u"); …
1
vote
0 answers

How to convert accented string to unaccented string in english in python without converting any other language character?

What I want is to convert accented characters into english and if there is some other language present then it should give blank.I have tried certain codes like below but its converting even the other langagues to english below or removing them.What…
1
vote
0 answers

How to sort string containing accents with Doctrine and Oracle

I am trying to sort alphabetically organisation names written in their national language, meaning they may contain accents or language specific characters. I have found the solution in plain sql with Oracle select org_name from organisations order…
Parktrip
  • 61
  • 4
1
vote
1 answer

Turn Capitalize text into Lower case with accent in String with Java

In a string, is there a way to find and turn a capitalized word that should contains accent into its lowercase form with accent in Java. This is an example. string = "Bonjour ceci est un PRELEVEMENT de votre banque CIC." result = "Bonjour ceci est…
odgatelmand
  • 393
  • 1
  • 5
  • 16
1
vote
1 answer

Send text to clipboard in selenium

I am working with a form that does not allow to type accents, but it does allow to paste text with accent. How can I send text to the clipboard, then paste the text containing accent into the form? from selenium.webdriver.support.ui import…
Dandal
  • 166
  • 1
  • 11
1
vote
1 answer

cannot read accented name in array with php

I want to do a check if a name already exists in an array. I have an issue with a name which contains accented chars. Below is the code is use and when filling in the (french) name Charlène Rodriês and the (german) name Jürgen Günter; it outputs:…
john
  • 1,263
  • 5
  • 18
1
vote
1 answer

My mail function return success and the mail is not received when there is french accent in the message

So I've got a script that send a mail from a form on my web page. The user simply put his mail address, the message and his name. First I send the mail to my contact address. (This is working fine) And after that I send a mail to the user's mail…
Nolat
  • 2,081
  • 2
  • 6
  • 8
1
vote
2 answers

UTF-8 encoding for XML with php and accent characters along with ENT_XML1

AN ongoing issue for over a year, That I though I had corrected but has evolved into a monster. I move large amounts of data between sites using XML generated on PHP systems. Mainly text I ran into some basic XML items that broke the transfer so I…
Radium Chris
  • 61
  • 1
  • 8
1
2 3 4