Tagged Questions
The umlauts tag has no wiki summary.
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 ...
11
votes
9answers
10k views
Listings in Latex with UTF-8 (or at least german umlauts)
Trying to include a source-file into my latex document using the listings package, i got problems with german umlauts inside of the comments in the code.
Using
\lstset{
extendedchars=\true,
...
6
votes
1answer
75 views
latin-1 to utf-8 database
I have a database that is uft8_general_ci, only problem is up until this point an application coded by a previous developer seems to have been working with the database in latin-1.
I have since ...
5
votes
3answers
55 views
Erroneous email receiver display when using German umlauts and a comma in name
Using the MailMessage class in .NET 4, I found an issue today that I'm unable to resolve so far. Please see the following code:
using (var message = new MailMessage())
{
message.From = new ...
5
votes
2answers
2k views
How to replace unicode characters by ascii characters in Python (perl script given)?
I am trying to learn python and couldn't figure out how to translate the following perl script to python:
#!/usr/bin/perl -w
use open qw(:std :utf8);
while(<>) {
...
4
votes
1answer
70 views
MySQL - Why are COLLATION rules ignored by LIKE operator for German ß character
I'm running the following select statements on MySQL 5.0.88 with utf8 charset and utf8_unicode_ci collation:
SELECT * FROM table WHERE surname = 'abcß';
+----+-------------------+------+
| id | ...
4
votes
2answers
117 views
iPhone CoreData: Sort with umlauts
I have an app that fetches data (a list of countries) from an sqlite database.
The countries are in German and contain umlauts, for example Österreich. I want to fetch those countries sorted by name ...
4
votes
2answers
224 views
Qt unicode and umlauts
Since we've converted all our source and header files to unicode, we're facing problems with german umlauts. Everything is fine in the source but QLabels and other gui components are showing umlauts ...
3
votes
2answers
83 views
GWT: Character encoding umlauts
I want to set a text in a label:
labelDemnaechst.setText(" Demnächst fällig:");
On the output in the application the characters "ä" are displayed wrong.
How can I display them well?
3
votes
2answers
158 views
Solr letter transformation / umlauts support
I'm using Solr 3.x with focus on German text, which works well.
Searching for umlauts (öäüß) also works well.
The problem is:
I received some archived text from the late 80s, were most of the ...
3
votes
1answer
369 views
filemtime() [function.filemtime]: stat failed for filenames with umlauts
I use the PHP function filemtime to get the last modification time with PHP 5.3. This functions works very well but it seems to have some problems when the filenames have special characters (for ...
3
votes
3answers
276 views
PHP Convert umlauts from e.g. “ue” to “ü”
Is there a way to convert umlauts from the representations ae, Ae, oe, Oe, ue, Ue and ss, back to the original umlauts? Important is that the spelling is observed like "teuer"! For example, the term ...
3
votes
1answer
694 views
How to configure git encoding for German Umlaute on Ubuntu and Windows?
I noticed that commit messages that contain German Umlaute are not displayed correctly when I run git log in Git Bash on Windows. Those commits were made on Ubuntu using the Terminal. Normally, commit ...
3
votes
2answers
293 views
WCF and custom text encoding - messy business
I have a really weird WCF problem here...
We're connecting to a crappy third-party web service; it was a nightmare to even get it going, we had to create a custom WCF binding since those guys decided ...
3
votes
1answer
76 views
Encoding Issue Title Tag
I've got a little problem with the tag in combination with PHP. My code is:
$title = '....';
echo '<title>'.htmlspecialchars($title).'</title>';
When i use "Niederländische Zitate" the ...
3
votes
2answers
402 views
Sort order in SQLite3 with umlauts
I'm working with a sqlite database, using python/django. I would need to have my results, which contain german umlauts (ä,ö,ü) to be correctly sorted (not with the umlauts at the end). Reading ...
3
votes
1answer
333 views
haml / rails: yield title with german umlauts
I would like to do something like this in my application layout:
%title= "#{yield(:sub_title)} - Page Name"
and in a real view
- content_for :sub_title do
Übersicht # I tried ...
3
votes
1answer
270 views
Rails: How to send emails to a recipient containing umlauts?
I'ld like to send an email with the following setup
def registration_confirmation(user)
recipients user.username + "<" + user.email + ">"
from "Netzwerk ...
3
votes
2answers
2k views
Trouble encoding a u umlaut with in a .Net http handler
I have a JavaScript request going to a ASP.Net (2.0) HTTP handler which passes the request to a java web service. In this system special characters, such as those with an accent do not get passed on ...
2
votes
3answers
58 views
XSL: for-each select a string with umlauts
I have the following XML:
<FeatureGroup FeatureGroup="Bundesländer">
<Feature>
<FeatureValue>
<Value LanguageCode="fr">Brandenburg</Value>
...
2
votes
1answer
97 views
Rails 3: Umlauts (or other unicode) in routes
I have a similar question as Ruby on Rails. Unicode routes but the answer marked as working there does not work for me.
I want to have a basic route for a landing page that contains an umlaut (ä). It ...
2
votes
2answers
144 views
Rails - link name with umlauts
I'm facing a quite little problem.
In my view.html.erb, I'm using words with German umlauts (ä, ö, ü..). Of course it's not working, to write äöü in the html.erb like this, I need to write the normal ...
2
votes
2answers
300 views
How to do MySQL queries on text with umlauts in Drupal?
I need to differentiate between nodes starting with 'O' and nodes starting with 'Ö' (o umlaut).
The problem is that since the node table and the title column have utf8_general_ci collation, MYSQL ...
2
votes
2answers
380 views
QFileDialog and german umlaute within a path
i am working on a project, which i am developing with Python and PyQT4. I have stumbled upon a somewhat odd behaviour of the QFileDialog, that is not occuring when running the project within in my IDE ...
2
votes
3answers
795 views
Convert non-ascii domain to SMTP compatible
When customers enter email addresses with non-ascii chars like äüö our SMTP rejects to process them.
So I think might be there is a solution to handle those domains myself and convert them to ...
2
votes
2answers
2k views
How to generate javadoc documentation with umlauts?
I am trying to generate javadocs in eclipse. The source files are UTF-8 encoded and contain some umlauts. The resulting html files do not specify an encoding and do not use html entities, so the ...
1
vote
0answers
22 views
Display of umlauts inside Facebook
I own several blogs and wondering about an umlauts problem, which appears at two of my blogs:
Umlauts and other special characters are not displayed correctly by share or link inside Facebook. I ...
1
vote
2answers
96 views
Objective-C NSString encoding Umlauts
I have the following issue:
I enter data in a UITextField and then I want to send it to a server. But the data I am entering may contain umlauts (ö, ä, ü, …). Then I get a wrong encoding when passing ...
1
vote
2answers
58 views
How can I “flatten” text that contains macrons and umlauts in .NET? [closed]
Possible Duplicate:
How to convert a Unicode character to its ASCII equivalent
How do I remove diacritics (accents) from a string in .NET?
I need to make a search form insensitive to text ...
1
vote
2answers
83 views
awk åäö umlaut-chars has length of 2
I'm using awk (mac os x) to print only lines that are n characters and longer.
If I try it on a text file (strings.txt) that looks like this:
four
foo
bar
föö
bår
fo
ba
fö
bå
And I run this awk ...
1
vote
1answer
119 views
How to use Umlauts from PHP in Javascript
I have a MySQL database that contains German Umlauts (ä, ü, ö, etc). The database fields are all encoded latin1_german1_c (if that matters).
From that database I create a json object that I use with ...
1
vote
1answer
208 views
Convert special character (i.e. Umlaut) to most likely representation in ascii
i am looking for a method or maybe a conversion table that knows how to convert Umlauts and special characters to their most likely representation in ascii.
Example:
Ärger = aerger
Bôhme = bohme
...
1
vote
1answer
283 views
PHP str_getcsv removes umlauts
I encountered a little problem when parsing CSV-Strings that contain german umlauts (-> ä, ö, ü, Ä, Ö, Ü) in PHP.
Assume the following csv input string:
w;x;y;z
48;OSL;Oslo Stock Exchange;B
...
1
vote
1answer
55 views
MySQL DB selects records with and without umlauts. e.g: '.. where something = FÖÖ'
My Table collation is "utf8_general_ci". If i run a query like:
SELECT * FROM mytable WHERE myfield = "FÖÖ"
i get results where:
... myfield = "FÖÖ"
... myfield = "FOO"
is this the ...
1
vote
1answer
222 views
Umlauts in OS X file names (perl)
I'm having some troubles with umlauts (ü character) in filenames on OS X. I'm creating the directory from a perl script. Conceptually what I'm doing is:
$NAME = "abcüabc";
$PATH = ...
1
vote
2answers
486 views
Ruby on Rails escape umlauts in url
I try to post some parameters containing umlauts to a url (PHP Script). So I've to escape the parameters. But Ruby returns me an unexpected string.
PHP:
urlencode("äöü");
output: %E4%F6%FC
and ...
1
vote
1answer
565 views
Special characters with KSOAP
I'm using KSOAP2 to invoke a web service. I am getting a response, but the special characters within that response aren't shown properly.
How can I change that?
EDIT:
Following code is responsible ...
1
vote
2answers
434 views
Android menu does not show German umlaut Ü
I just added a German localization to my app, and I am realy wondering, why the menu doesn't display some German umlauts.
menu.xml:
<?xml version="1.0" encoding="utf-8"?>
<menu ...
1
vote
2answers
360 views
hex representation of german umlaut to string
I have a String that has non ascii characters encoded as "\\'fc" (without quotes), where fc is hex 252 which corresponds to the german ü umlaut.
I managed to find all occurences and can replace them. ...
1
vote
1answer
523 views
remove umlauts or specialchars in javascript string
Never played before with umlauts or specialchars in javascript strings. My problem is how to remove them?
For example I have this in javascript:
var oldstr = "Bayern München";
var str = ...
1
vote
1answer
153 views
acts_as_ferret with German umlauts
I managed to setup my app with a search based on acts_as_ferret. Overall it works fine. But I can't find results for words with umlauts (e. g. “Getränke”).
I added this to my environment.rb and ...
1
vote
1answer
194 views
sqlite import Mac
I've a problem importing data into a sqlite database.
I go like this:
I receive the INSERT queries from a PHP script, which reads a *.csv file and then gets analyzed (remove whitespaces, make ...
1
vote
3answers
734 views
Failing to write german 'umlauts' (äöü) from console to text file with java
currently I'm desperately trying to write german umlauts, read from the console, into a utf8 encoded text file on windows 7.
Here is the code to setup the scanner:
Scanner scanner = new ...
1
vote
3answers
133 views
What to do with umlauts (äöü) in metatags?
Declaring them as &xuml; etc. didn't work, just writing them as they are leads to display errors.
What to do?
1
vote
1answer
596 views
preg_replace: wildcards do not match umlaut-characters
i want to filter a String by using the \w wildcard, but unfortunately it does not cover umlauts.
$i = "Die Höhe";
$x = preg_replace("/[^\w\s]/","",$i);
echo $x; // "Die Hhe";
However, i can add ...
1
vote
1answer
183 views
How to stop HtmlTidy from converting umlauts (e.g. ü to ü)
Our website runs the user's input via HtmlTidy to clean it. Apparently while doing this it also causes pain for our international subscribers by converting umlauts. Is there any option to specify for ...
1
vote
1answer
468 views
Oracle regex: \Q\E doesn't work
I found that \Q\E doesn't work in oracle.
What is the equivalent expression of \Q\E for oracle regex ?
1
vote
1answer
241 views
sIFR: dynamically inserting umlaut causes trouble
let me state cleary at the beginning that I know about the embedding issue in flash.
So, to the point. If sIFR replaces an umlaut (ä,ö,ü) which is hard coded in the HTML file everythings works fine.
...
1
vote
1answer
429 views
LaTeX porting *.eps images with eps2pdf and german umlauts (mutated vowel)
I draw a use case diagram with MagicDraw and save it as EPS file. Now I want to integrated it into my TeX file by using eps2pdf. It works so far, but the picture includes german umlauts like ä,ö or ü ...
1
vote
1answer
4k views
Twitter sharing problems with umlauts ä & ö
I'm having trouble sharing messages containing scandinavian ä & ö to twitter through a share-button on my site. If I use UTF8-codes above %7F, i just bump into an "Invalid Unicode value in one or ...