The accented-strings tag has no wiki summary.
0
votes
0answers
3 views
How do I disable alt-codes in dwm?
I'm running ubuntu with dwm just for learning, but I cannot use any commands which use the meta/alt key because any further keys with alt are interpreted as an alt-code and prints out accented ...
0
votes
0answers
50 views
How to get accented characters to work in classic ASP generated Excel file?
I have this classic ASP code that gets data from a SQL Server database, and then creates an Excel file using Response.ContentType = "application/vnd.ms-excel".
However some of the data has names ...
0
votes
1answer
37 views
Printing accented characters from a Java program onto a linux shell
I'm running a Java program from command line in Ubuntu, and trying to print accented characters onto the console. But the characters get displayed as ? on the console. How do I make the shell display ...
0
votes
2answers
124 views
JavaScript, jQuery, AJAX and accented characters: how to get them working?
I'm experiencing a problem with the display of accented characters via AJAX and jQuery. I'll explain it in more detail.
I have a page where it has an input field. When I fill that field with 4 ...
3
votes
3answers
84 views
From a Java program, portable way to write strings with accents
Hullo,
I have a Java program, with command line interface. It is used on Linux and Windows. The Java code is portable, and I want it to remain portable.
My Java source files are in Unicode — which ...
0
votes
0answers
63 views
Getting Java Lucene analyzer accent list
I want to get the list of accents that Lucene analyzer remove from tokenStream when tokenize it. For example, it remove character like '.' and '|'. I want to get the list of this characters. How can I ...
0
votes
0answers
72 views
Vim abbreviations with accented characters not completely replacing text
My Vim abbreviations are not working when I use Spanish accents or characters. I have in my .vimrc the following:
iab maniana mañana
iab habia había
But when I hit Space after typing for instance ...
1
vote
2answers
88 views
Vim, swapping words with accented characters
I'm trying to use the following mappings to swap words in Vim:
" Swap current word with previous one (push word to the left)
nnoremap <silent> <A-h> ...
0
votes
1answer
154 views
Characters with accent issue in jquery dialog autocomplete
I am trying to display the word Colón as a possible entry in an autocomplete JQuery dialog. Unfortunately, I get Colón instead. I tried to HTML escape it, but it displays Colón.
How can I ...
1
vote
0answers
58 views
String stops displaying after 1st accentued character
**Problem with Laravel 4 beta 3 :
A string stops displaying after 1st accentued character.**
I have a DB table where I store DVD entries (title,director,...)
The DB is utf_8, collation for title is ...
1
vote
3answers
97 views
Encoding error using Python
I wrote a code to connect to imap and then parse the body information and insert into database. But I am having some problems with accents.
From email header I got this information:
...
2
votes
2answers
60 views
Java: insert accented charachters in mysql
If I have this query from java:
String query="insert into user (..., name, ...) values (..., 'à', ...)";
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection con = ...
0
votes
2answers
123 views
Python - How to get accented characters correct? (BeautifulSoup)
I've write a s python code with BeautifulSoup to get HTML but not getting how to solve accented characters correct.
The charset of the HTML is this
<meta http-equiv="Content-Type" ...
0
votes
1answer
161 views
Codeigniter - global XSS filtering TRUE
i setted up this in my config.php:
$config['global_xss_filtering'] = TRUE;
the problem for me is that it removes all the accented chars like "à,ù,è,ò"
is this usual?
also why replacing them? how ...
0
votes
1answer
47 views
Crashing in StreamWithExternalResource with a filename that has accents
I have to read an image in the Pictures folder that has accents (e.g "éleá"). This name is connected with a database that has also accents. I am using those resources from a client and don't know if I ...