Tagged Questions
A Diacritic is a mark near or through an orthographic or phonetic character or combination of characters indicating a phonetic value different from that given the unmarked or otherwise marked element - http://www.merriam-webster.com/dictionary/diacritic
59
votes
9answers
12k views
How do I remove diacritics (accents) from a string in .NET?
I'm trying to convert some strings that are in French Canadian and basically, I'd like to be able to take out the French accent marks in the letters while keeping the letter. (E.g. convert é to e.)
...
39
votes
5answers
12k views
What is the best way to remove accents in a python unicode string?
I have a unicode string in python, and I would like to remove all the accents (diacritics).
I found on the Web an elegant way to do this in Java:
convert the unicode string to its long normalized ...
39
votes
18answers
28k views
Microsoft Excel mangles Diacritics in .csv files?
I am programmatically exporting data (using PHP 5.2) into a .csv test file.
Example data: Numéro 1 (note the accented e).
The data is utf-8 (no prepended BOM)
When I open this file in MS excel is ...
35
votes
10answers
3k views
ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars
I am looking an algorithm that can map between characters with diacritics (tilde, circumflex, caret, umlaut, caron) and their "simple" character.
For example:
ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ...
13
votes
3answers
9k views
PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string
What I want to do is to remove all accents and umlauts from a string, turning "lärm" into "larm" or "andré" into "andre". What I tried to do was to utf8_decode the string and then use strtr on it, but ...
12
votes
7answers
3k views
How to handle diacritics (accents) when rewriting 'pretty URLs'
I rewrite URLs to include the title of user generated travelblogs.
I do this for both readability of URLs and SEO purposes.
http://www.example.com/gallery/280-Gorges_du_Todra/
The first ...
11
votes
8answers
7k views
Test if string contains only letters (a-z + é ü ö ê å ø etc..)
I want to match a string to make sure it contains only letters.
I've got this and it works just fine:
var onlyLetters = /^[a-zA-Z]*$/.test(myString);
BUT
Since I speak another language too, I ...
10
votes
7answers
11k views
Converting Symbols, Accent Letters to English Alphabet
The problem is that, as you know, there are thousands of characters in the Unicode chart and I want to convert all the similar characters to the letters which are in English alphabet.
For instance ...
8
votes
3answers
575 views
Python and character normalization
Hello
I retrieve text based utf8 data from a foreign source which contains special chars such as u"ıöüç" while I want to normalize them to English such as "ıöüç" -> "iouc" . What would be the best way ...
8
votes
4answers
439 views
Why doesn't Đ get flattened to D when Removing Accents/Diacritics
I'm using this method to remove accents from my strings:
static string RemoveAccents(string input)
{
string normalized = input.Normalize(NormalizationForm.FormKD);
StringBuilder builder = new ...
8
votes
5answers
596 views
Accents on numbers in HTML (like a ^ over 1)
I'm trying to find the best way to put circumflex accents ( ˆ = ˆ) on top of numbers (a musical notation) without resorting to images. Certain letters have equivalent HTML entities: ...
7
votes
5answers
5k views
How to change diacritic characters to non-diacritic ones
I've found a answer how to remove diacritic characters on stackoverflow, but could you please tell me if it is possible to change diacritic characters to non-diacritic ones?
Oh.. and I think about ...
6
votes
3answers
2k views
Replace diacritic characters with “equivalent” ASCII in PHP?
Related questions:
http://stackoverflow.com/questions/2653739/how-to-replace-characters-in-a-java-string
...
5
votes
1answer
272 views
Highlight words with (and without) accented characters / diacritics in jQuery
I'm using the jquery.highlight plugin: http://code.google.com/p/gce-empire/source/browse/trunk/jquery.highlight.js?r=2
I'm using it to highlight search results.
The problem is that if I search ...
5
votes
8answers
2k views
How to remove diacritics from text?
I am making a swedish website, and swedish letters are å, ä, and ö.
I need to make a string entered by a user to become url-safe with PHP.
Basically, need to convert all characters to underscore, ...
4
votes
2answers
91 views
How to generate diacritized vowel table automatically?
I want to have the table of vowels with diacritics, but don't want to search symbol tables manually.
Is it possible to generate this table by crossing the list of vowels and the list of diacritics ...
4
votes
4answers
757 views
Delphi XE AnsiStrings with escaped combining diacritical marks
What is the best way to convert a Delphi XE AnsiString containing escaped combining diacritical marks like "Fu\u0308rst" into a frienly WideString "Fürst"?
I am aware of the fact that this is not ...
4
votes
2answers
463 views
Python regex \w doesn't match combining diacritics?
I have a UTF8 string with combining diacritics. I want to match it with the \w regex sequence. It matches characters that have accents, but not if there is a latin character with combining diacritics.
...
4
votes
3answers
438 views
Indexing and searching French text with diacritics in Lucene
I am using Lucene Search.
I have uploaded a French file (french.txt) with the following content.
multimédia francophone pour l'enseignement du français langue étrangère
If I search for francophone ...
4
votes
6answers
822 views
å in xml file is valid or not?
IE doesn't like the å character in an XML file to display.
Is that an IE problem or are å and alike chars indeed invalid XML and do i have to create the xx; values for all these letters?
Michel
...
4
votes
2answers
3k views
Removing accents/diacritics from string while preserving other special chars (tried mb_chars.normalize and iconv)
There is a very similar question already. One of the solutions uses code like this one:
string.mb_chars.normalize(:kd).gsub(/[^x00-\x7F]/n, '').to_s
Which works wonders, until you notice it also ...
3
votes
2answers
287 views
Highlight accented characters
I'm using the jquery.highlight plugin: http://code.google.com/p/gce-empire/source/browse/trunk/jquery.highlight.js?r=2
When I search an accented word, e.g. "café", it won't highlight the "café" ...
3
votes
3answers
397 views
Detecting words that start with an accented uppercase using regular expressions
I want to extract the words that begin with a capital — including accented capitals — using regular expressions in Java.
This is my conditional for words beginning with capital A through Z:
if ...
3
votes
2answers
393 views
Unicode characters show differently in different browsers
So... I'm still in unicode hell...
New problem...
On my computer, everything shows perfectly. In all browsers. On a co-workers computer, same story. Everything is good. Even in elinks and w3m on one ...
3
votes
1answer
264 views
How to write a php search script in which words with diacritics match search terms without diacritics, and the results are underlined?
I've got this site where there are lots of texts with diacritics in them (ancillary glyphs added to letters, according to wikipedia) and most people search these texts using words without the glyphs. ...
3
votes
4answers
435 views
Asp.Net /C# when is Å equal to A? (and É equal to E)
i'm paging countries in an alfabet, so countries starting A-D, E-H etc.
But i also want to list åbrohw at the a, and ëpollewop at the e.
I tried string.startswith providing a stringcompare option, but ...
3
votes
1answer
3k views
Replacing accented/umlauted characters with their unadorned counterparts in C# [closed]
Duplicate of 249087
I have a bunch of user generated addresses that may contain characters with diacritic marks.
What is the most effective (i.e. generic) way (apart from a straightforward replace) ...
2
votes
2answers
84 views
Oracle: search for diacritics
In Oracle I try to find all the rows that contains some diacritics in one column. I used something like:
where regexp_like(name,'(Ă|Î|Ș|Ț|Â)','i');
The problem is that it also returns rows that ...
2
votes
2answers
81 views
Conducting a diacritic sensitive search
I've looked all over the web only to find ways to make searches insensitive to diacritic characters, but I need the opposite.
In my situation I need to be able to compare specifically symbols with ...
2
votes
1answer
63 views
Replace diacritic letters with equivalent
I'm trying to replace:
á, ă, â ... with a
í, ì, ĭ, î, ǐ, ï, ḯ ... with i
ú, ü ... with u
And so on.
What I am doing now is this: str.replace(/[íìĭîǐïḯ]/gi,'i'.
Also, if I want to match all of them ...
2
votes
1answer
146 views
Replace worldwide diacritics characters [closed]
Possible Duplicate:
PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string
I want to replace diacritics characters with his non-diacritics brother.
example: from ...
2
votes
3answers
222 views
Using å ö ä in key of NSDictionary
I am creating an application where a user can click a city name in a tableview. I'm identifying the name the user selected to match a key in a NSDictionary.
The problem is that some of the cities ...
2
votes
1answer
210 views
How to sort list with diacritics without removing diacritic
How to sort a list that contains letters with diacritic markings?
Words used in this example are made up.
Now I get a list that displays this:
báb
baz
bez
But I want to get a list ...
2
votes
4answers
249 views
lift can't handle diacritics
I'm developing a web app with Lift Framework, GlassfishV3 and there is a problem with diacritics in my app. I do just value binding to model and when I log the value from input text field, the ...
2
votes
2answers
423 views
Sorting strings with accented characters in python [closed]
Possible Duplicate:
Python not sorting unicode properly. Strcoll doesn't help.
I'm trying to sort some words in alphabetical order. Here is how I do it:
#!/opt/local/bin/python2.7
# ...
2
votes
1answer
289 views
How to deal with quotes and apostrophes for string comparison in MySQL so they match (collation)
MySQL uses collations to do string comparison because some characters should match
Exemple:
SELECT 'é' = 'e' COLLATE utf8_unicode_ci;
SELECT 'oe' = 'œ' COLLATE utf8_unicode_ci;
both return true
...
2
votes
2answers
498 views
Removing diacritics in Silverlight (String.Normalize issue)
I did create a function that transforms diacritic characters into non-diacritic characters (based on this post)
Here’s the code:
Public Function RemoveDiacritics(ByVal searchInString As String) As ...
2
votes
3answers
267 views
regex in Vietnamese characters
I have one string and want remove any character not in any case below:
not in this list : ÀÁÂÃÈÉÊÌÍÒÓÔÕÙÚĂĐĨŨƠàáâãèéêìíòóôõùúăđĩũơƯĂẠẢẤẦẨẪẬẮẰẲẴẶẸẺẼỀỀỂ
...
2
votes
2answers
201 views
Ignoring diacritics when ordering alphabetically
I'm making a Java app that receives some names from SQLite and puts them on a listbox.
The thing is I want it to be accurately ordered in an ascending alphabetical way (In Portuguese to be specific).
...
2
votes
5answers
719 views
Removing diacritics in Polish
I'm trying to remove diacritic characters from a pangram in Polish. I'm using code from Michael Kaplan's blog http://blogs.msdn.com/b/michkap/archive/2007/05/14/2629747.aspx, however, with no success.
...
2
votes
3answers
2k views
ToAscii/ToUnicode in a keyboard hook destroys dead keys
It seems that if you call ToAscii() or ToUnicode() while in a global WH_KEYBOARD_LL hook, and a dead-key is pressed, it will be 'destroyed'.
For example, say you've configured your input language in ...
2
votes
3answers
670 views
iTextSharp diacritics
I am trying to typeset a pdf with iTextSharp library, but I cannot find anywhere how to handle diacritics. Since I found tables of contents of two books about iTextSharp where diacritics has a ...
2
votes
3answers
1k views
Diacritic insensitive mysql search?
How do I make a diacritic insensitive,
ex this persian string with diacritics
هواى بَر آفتابِ بارِز
is not the same as with removed diacritics in mySql
هواى بر آفتاب بارز
Is there a way of ...
2
votes
2answers
706 views
Croatian diacritic signs in MySQL db (utf-8)
So, symbols belows display title should be displayed that way.
UTF-8 entities are listed below HTML (utf-8) title (here is list: LINK)
And last line shows what is stored in my database.
Collation of ...
2
votes
2answers
614 views
Table query in iPhone app
I have a tableview (linked to a database) and a search bar. When I type something in the search bar, I do a quick search in the database and display the results as I type.
The query looks like this:
...
2
votes
2answers
295 views
tell whether a character is a combining diacritic mark
if you're looping though the chars a unicode string in python (2.x), say:
ak.sɛp.tɑ̃
How can you tell whether the current char is a combining diacritic mark?
For instance, the last char in the ...
1
vote
1answer
77 views
Diacritic chars in a Jasper Report template
I have to use Polish language to fill my report content, so I have to use diacritic chars (ą, ć, ę, ł, ó, ż, ź). And I have problem with them, they are skipped after exporting jasper print to an ...
1
vote
3answers
146 views
Javascript regex to accept only letters, spaces, and ñ [closed]
I am looking for a Javascript regex to make sure the string contains only spaces, letters, and ñ — case insensitively.
1
vote
2answers
39 views
How are diacriticals represented in a font and typed in a Java app?
I'm writing a simulation of an old computer console typewriter that had one unusual feature: "flagged digits." A flagged digit is a digit with a horizontal bar above it, and you typed it by pressing ...
1
vote
2answers
48 views
Is the order in which combining diacritic marks appear after a codepoint important?
I wonder if the order in which combining diacritic marks appear after a codepoint changes the way how the diacritics should be stacked above or below the character; or if there is another semantic ...