Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

40
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 ...
18
votes
6answers
3k views

Should I use accented characters in URLs?

When one creates web content in languages different than English the problem of search engine optimized and user friendly URLs emerge. I'm wondering whether it is the best practice to use de-accented ...
15
votes
2answers
4k views

Get CSV Data from Clipboard (pasted from Excel) that contains accented characters

SCENARIO My users will copy cells from Excel (thus placing it into the clipboard) And my application will retrieve those cells from the clipboard THE PROBLEM My code retrieves the CSV format ...
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 ...
9
votes
3answers
2k views

How to remove accents in MySQL?

I've just compiled a database of 1 million place names. I'm going to use it in an auto-complete widget to look up cities. A lot of these places have accents... I want to be able to find records when a ...
9
votes
4answers
918 views

Java - getting rid of accents and converting them to regular letters

Is there a better way for getting rid of accents and making those letters regular apart from using String.replaceAll() method and replacing letters one by one? Example: Input: orčpžsíáýd Output: ...
8
votes
4answers
1k views

Replace all accented characters by their LaTeX equivalent

Given a Unicode string, I want to replace non-ASCII characters by LaTeX code producing them (for example, having é become \'e, and œ become \oe). I'm incorporating this into a Python code. This should ...
8
votes
2answers
2k views

What are the RGB values of the default accent colors in Windows Phone 7?

I am making icons for some Win Phone 7 apps and want to use some solid colors the way all the other apps do. Where can I find a reference for these colors?
8
votes
2answers
1k views

How can I ignore accents when comparing strings in Perl?

I have this quiz application where I match what people type with the right answer. For now, what I do is basically that : if ($input =~ /$answer/i) { print "you won"; } It's nice, as if the ...
7
votes
2answers
526 views

How can I get accents (as tone marks) over Chinese characters in LaTeX?

Tone marks above Chinese characters in latex / Combining Accents in unicode My aim is to put tone marks above Chinese characters in latex, and google seems to not be letting on to the answer. Is it ...
6
votes
3answers
1k views

Why does string.Compare seem to handle accented characters inconsistently?

If I execute the following statement: string.Compare("mun", "mün", true, CultureInfo.InvariantCulture) The result is '-1', indicating that 'mun' has a lower numeric value than 'mün'. However, if I ...
5
votes
2answers
160 views

Lost with encodings (shell and accents)

I'm having trouble with encodings. I'm using version Python 2.7.2+ (default, Oct 4 2011, 20:03:08) [GCC 4.6.1] on linux2 I have chars with accents like é à. My scripts uses utf-8 encoding ...
5
votes
2answers
515 views

accent insensitive regex

My code: jQuery.fn.extend({ highlight: function(search){ var regex = new RegExp('(<[^>]*>)|('+ search.replace(/[.+]i/,"$0") +')','ig'); return this.html(this.html().replace(regex, ...
5
votes
5answers
2k views

How to remove accent characters from an InputStream

I am trying to parse a Rss2.0 feed on Android using a Pull parser. XmlPullParser parser = Xml.newPullParser(); parser.setInput(url.open(), null); The prolog of the feed XML says the encoding is ...
5
votes
2answers
2k views

normalizing accented characters in MySQL queries

I'd like to be able to do queries that normalize accented characters, so that for example: é, è, and ê are all treated as 'e', in queries using '=' and 'like'. I have a row with username field set ...
5
votes
7answers
11k views

Javascript : remove accents in strings

How do I remove accentuated characters from a string ? Especially in IE6, I had something like this : accentsTidy = function(s){ var r=s.toLowerCase(); r = ...
4
votes
3answers
95 views

removing accent and special characters [closed]

Possible Duplicate: What is the best way to remove accents in a python unicode string? Python and character normalization I would like to remove accents, turn all characters to lowercase, ...
4
votes
3answers
148 views

ASP.NET MVC 3 jquery : French accent characters are showing as #233 characters on screen

I have ASP.NET MVC 3 application having resource files in english and french. A text 'Sélectionner la pharmacie' is stored in a french resource file. When the value is read from resource files with ...
4
votes
1answer
2k views

Chrome and Safari handles utf 8 differently then Firefox and IE if utf 8 character not hard coded issue?

note: question title is change as discussed in this meta Q&A I'm using the jQuery bassistance autocomplete plugin with the accent plugin, so I have accent-free autocomplete. Accent map is like ...
4
votes
2answers
892 views

How can I make a regular expression which takes accented characters into account?

I have a JavaScript regular expression which basically finds two-letter words. The problem seems to be that it interprets accented characters as word boundaries. Indeed, it seems that A word ...
4
votes
5answers
2k views

Transforming some special caracters (é,è,…) into “e”

I have a question related to Java in my android application. I have a list with some Belgian cities with diacritic characters: (Liège,Quiévrain,Franière, etc.) and I would like to transform these ...
4
votes
3answers
672 views

How to know if a string contains accents

How to know if a string contains accents?
3
votes
1answer
97 views

Mongodb match accented characters as underlying character

In MongoDB "db.foo.find()" syntax, how can I tell it to match all letters and their accented versions? For example, if I have a list of names in my database: João François Jesús How would I allow a ...
3
votes
1answer
165 views

Accent insensitive search in Grails

How to make full text search using Grails Searchable Plugin accent insensitive ?
3
votes
1answer
62 views

MySQL is too smart about accented characters

I guess, normally people would be aiming to make their programme behave like this, but in my case this is completely opposite from what I want. Somehow, my MySQL database is able to read different ...
3
votes
3answers
134 views

How to detemine the coding of accents?

This question is related to this previous one on how to replace accented strings like México with equivalent Latex code M\'{e}xico. My problem here is slightly different. I am using a third party ...
3
votes
7answers
461 views

Regex accent insensitive?

I need a Regex in a C# program. I've to capture a name of a file with a specific structure. I used the \w char class, but the problem is that this class doesn't match any accented char. Then how ...
3
votes
2answers
288 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
2answers
274 views

PHP charset accents issue

I have a form in my page for users to leave a comment. I'm currently using this charset: meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" but retrieveving the comment from ...
3
votes
1answer
322 views

SQL Server 2008 R2 Full Text Search with FORMSOF and Accent Insensitive

I'm using MS SQL Server 2008 R2 with Full Text Search for searching text data stored in different languages. I'm a bit confused about how CONTAINS predicate works with accents. When I use the ...
3
votes
1answer
396 views

Accent in javascript and PHP

I got a hard time with accent (hey i'm french, nobody is perfect !) both problem in php and javascript.. here is the code : in php : $message = ""; $message .= "Bonjour!". "\r\n"; $message .= ...
3
votes
1answer
265 views

FTP server output and accents

I've written this little test class to connect up to an FTP server. import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; ...
3
votes
1answer
1k views

Java string searching ignoring accents

I am trying to write a filter function for my application that will take an input string and filter out all objects that don't match the given input in some way. The easiest way to do this would be ...
3
votes
2answers
1k views

Accent Insensitive ordering in Sphinx

I am using Sphinx with the Thinking Sphinx plugin to search my data. I am using MySQL. My data contains accented chars ("á", "é", "ã") and I want them to be equivalent to their non-accented ...
3
votes
1answer
1k views

How can I do a accent insensitive search in Postgres 8.3.x with a DB in utf-8?

Tried select to_ascii('capo','LATIN1'), to_ascii('çapo','LATIN1') and the results are different....
2
votes
0answers
58 views

Using NSXMLParser with ISO-8859-1 truncates words with accents

I have the same exact problem that's in this question: Problemas com Parse XML - Iphone, but it didn't get any good answers. I'm trying to parse an XML file with an ISO-8859-1 encoding, but everytime ...
2
votes
3answers
193 views

problem with accent-insensitive searches

I'm trying to perform a full-text search on a table of polish cities and many of them contain accented characters. It's meant to be used in an ajax call for auto completion so it would be nice if the ...
2
votes
2answers
492 views

ASP MVC3 FileResult with accents + IE8 - bugged?

If the file name contains accents, it works as expected in Opera, FF, Chrome and IE9. But in IE8 file type is "unknown file type", and shows "file" as the file name (actually the last part of the ...
2
votes
4answers
223 views

Spanish Accent Marks in Form Submission

I have a form where spanish can be submitted and using PHP, I send an email with the data. Unfortunately, the accent marks get totally screwed up when they get emailed. If I submit the following: ...
2
votes
1answer
589 views

JEE, accent in url, request.getParameter wrong value

I work in Java on a web application servlet / jsp and I have a problem today: After validating a form, I pass the value of an input field as a parameter (GET). I was careful to use the method ...
2
votes
4answers
345 views

isLetter with accented characters in C

I'd like to create (or find) a C function to check if a char c is a letter... I can do this for a-z and A-Z easily of course. However i get an error if testing c == á,ã,ô,ç,ë, etc Probably those ...
2
votes
6answers
1k views

Save Accents in MySQL Database [PHP]

I'm trying to save French accents in my database, but they aren't saved like they should in the DB.For example, a "é" is saved as "é".I've tried to set my files to "Unicode (utf-8)", the fields in ...
2
votes
2answers
279 views

Multi-language support

We have developed a site that needs to display text in English, Polish, Slovak and Czech. However, when the text is entered into the database, any accented letters are changed to english letters. ...
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
3answers
785 views

Case and accent insensitive 'like' comparison oracle without altering session on oracle

Hi all I need to be able to do 'like' queries across several languages, so that a umlaut, a and A are treated the same and so on. I'm on 10gr2 of oracle and I can't alter the session. I've been ...
2
votes
3answers
436 views

Char with accent to char without accent in C

Hey guys. simple question: how to remove accents from a char? Like ã -> a, and é -> e. I asked in another question how to convert utf-8 to ascii but this is unnecessary, since I only need to treat ...
2
votes
4answers
929 views

Case Sensitive Accent Folding in Javascript

You wrote this code: accentsTidy = function(s){ var r=s.toLowerCase(); r = r.replace(new RegExp("\\s", 'g'),""); r = r.replace(new ...
2
votes
1answer
579 views

Delphi: CDO.Message encoding problems

We wrote a Delphi program that send some informations with CDO. In my Win7 machine (hungarian) the accents are working fine. So if I sent a mail with "ÁÉÍÓÖŐÚÜŰ", I got it in this format. I used ...
2
votes
3answers
277 views

How to convert an accented character in an unicode string to its unicode character code using Python?

Just wonder how to convert a unicode string like u'é' to its unicode character code u'\xe9'? Thank you for your help.
2
votes
1answer
146 views

Erlang - Eccentricity with accented characters and string literal

Hey, I am trying to implement a function to differentiate between french vowels and consonnants. It should be trivial, let's see what I wrote down : -define(vowels,"aeiouyàâéèêëôù"). is_vowel(Char) ...

1 2 3