Tagged Questions

14
votes
7answers
8k views

String To Lower/Upper in C++

What is the best way people have found to do String to Lower case / Upper case in C++? The issue is complicated by the fact that C++ isn't an English only programming language. Is there a good ...
9
votes
3answers
285 views

UTF-16 string terminator

What is the string terminator sequence for a UTF-16 string? EDIT: Let me rephrase the question in an attempt to clarify. How's does the call to wcslen() work?
9
votes
6answers
879 views

Is there an STL string class that properly handles Unicode?

I know all about std::string and std::wstring but they don't seem to fully pay attention to extended character encoding of UTF-8 and UTF-16 (On windows at least). There is also no support for UTF-32. ...
8
votes
2answers
553 views

Convert between string, u16string & u32string

I've been looking for a way to convert between the Unicode string types and came across this method. Not only do I not completely understand the method (there are no comments) but also the article ...
8
votes
3answers
330 views

Where can I get started with Unicode-friendly programming in C?

So, I’m working on a plain-C (ANSI 9899:1999) project, and am trying to figure out where to get started re: Unicode, UTF-8, and all that jazz. Specifically, it’s a language interpreter project, and I ...
6
votes
5answers
4k views

How to work with unicode in Python

I am trying to clean all of the HTML out of a string so the final output is a text file. I have some some research on the various 'converters' and am starting to lean towards creating my own ...
5
votes
3answers
331 views

Java Unicode strings sorting

In Java, how does Unicode strings get compared? What I mean is, if I have a few say, Japanese strings, when I do the following: java.util.Arrays.sort(arrayOfJapaneseStrings); how does those ...
4
votes
4answers
186 views

What issues would come from treating UTF-16 as a fixed 16-bit encoding?

I was reading a few questions on SO about Unicode and there were some comments I didn't fully understand, like this one: Dean Harding: UTF-8 is a variable-length encoding, which is more ...
4
votes
2answers
3k views

strcmp or _tcscmp in UNICODE

For comparing strings in UNICODE versions is it advisable to use strcmp or _tcscmp? Thanks in advance
4
votes
3answers
2k views

Displaying a unicode text in C#

My App displays English, Japanese and Chinese characters on a TextBox and a LinkLabel. Currently, I check if there are unicode characters and change the font to MS Mincho or else leave it in Tahoma. ...
3
votes
3answers
203 views

How do i construct a WideString with a diacratic in a non-unicode Delphi version?

i am trying to construct a (test) WideString of: á (U+00E1 Small Letter Latin A with acute) but using it's decomposed form: LATIN SMALL LETTER A (U+0061) COMBINING ACUTE ACCENT (U+0301) ...
3
votes
2answers
72 views

Why isn't “\400” a compile-time error?

Character values between 0 and 255 can be denoted by octal literals from "\000" to "\377". So shouldn't "\400" be a compile-time error? Eclipse does not complain, however... what's going on here?
3
votes
3answers
244 views

Unicode strings in .Net with Hebrew letters and numbers

There is a strange behavior when trying to create string which contains a Hebrew letter and a digit. The digit will always be displayed left to the letter. For example: string A = "\u05E9"; //A ...
3
votes
1answer
168 views

Automatically change between std::string and std::wstring according to unicode setting in MSVC++?

I'm writing a DLL and want to be able to switch between the unicode and multibyte setting in MSVC++2010. For example, I use _T("string") and LPCTSTR and WIN32_FIND_DATA instead of the -W and -A ...
3
votes
4answers
1k views

What is the range of Unicode Printable Characters?

Can anybody please tell me what is the range of Unicode (UTF8) printable characters? [e.g. Ascii printable character range is \u0020 - \u007f]
3
votes
1answer
165 views

How do I use Unicode Character Combining with Kanji/Hanzi?

I'm trying to find a workaround to display old and rare characters in unicode using character combining. Currently I'm converting some dictionaries from EPWING into text and there are 36 different ...
3
votes
2answers
965 views

copy text (Indian language- GUjarati) from word document to web page text area problem

I am developing one site in Indian language (Gujarati). My problem is as below: My client wants that they able to copy Gujarati text from word document and paste into the Text area. But when i copy ...
3
votes
1answer
282 views

How to get unicodes from Google translation output string

In google translate web site if i type any word in English and select any other foreign language, it show the exact word in the foreign language. I want the unicode value of that foreign characters. ...
3
votes
3answers
748 views

Weird SQL Behavior, why is this query returning nothing?

Assume there is a table named "myTable" with three columns: {**ID**(PK, int, not null), **X**(PK, int, not null), **Name**(nvarchar(256), not null)}. Let {4, 1, аккаунт} be a record on the ...
2
votes
2answers
218 views

Convert string to unicode

import hashlib string1 = u'test' hashstring = hashlib.md5() hashstring.update(string1) string2 = hashstring.digest() unicode(string2) UnicodeDecodeError: 'ascii' codec can't decode byte 0x8f in ...
2
votes
1answer
168 views

In ICU UnicodeString what is the difference between countChar32() and length()?

From the docs; The length is the number of UChar code units are in the UnicodeString. If you want the number of code points, please use countChar32(). and Count Unicode code points in the length ...
2
votes
1answer
352 views

Writing ansi string to unicode file over FTP

I have the following VB6 function which writes an ansi string to a new file over ftp. I would like it to write the file as UTF-16LE. Is there any good way to do that within this following method? ...
2
votes
3answers
614 views

Java: How to create unicode from string “\u00C3” etc

I have a file that has strings hand typed as \u00C3. I want to create a unicode character that is being represented by that unicode in java. I tried but could not find how. Help. Edit: When I read ...
2
votes
1answer
973 views

'Malformed string' exception when inserting into Firebird (Delphi, UniDAC, UniSQL, INSERT, parameters)

Using Delphi 2010, UniDAC components, Firebird 2.5 SuperServer. Database character set is ISO_8559_1 (my Windows default). I am writing a data transfer application to transfer data from an Access ...
2
votes
1answer
290 views

Converting unicode objects with non-ascii symbols in them into strings objects (in python)

I want to send chinese characters to be translated by an online service, and have the resulting english string returned. I'm using simple json and urllib for this. And yes, i am declaring. # -*- ...
1
vote
1answer
66 views

cant display unicode character

I want to display Turkish characters stored in a PostgreSQL database in my JSP page I have included: <meta http-equiv="content-type" content="text/html;charset=utf-8" />. I still can't see the ...
1
vote
2answers
168 views

Issue with removing newline character from unicode string in python

I have a piece of Unicode text. I wanted to remove all newline characters from the text before printing the output. My code looks something like this: input_string = ...
1
vote
1answer
174 views

Least used unicode delimiter

I'm trying to tag my text with a delimiter at specific places that will be used later for parsing. I want to use a delimiter character that is least frequently used. I'm currently looking at the "\2" ...
1
vote
1answer
107 views

nhibernate disable unicode

in our company we are using nhibernate as our default mapper. I write queries using nhibernate criteria - I noticed that all parameters are send as unicode like this: exec sp_executesql N'SELECT ...
1
vote
3answers
598 views

Convert Unicode (CJK ExtB) character to Decimal NCRs in Java / Scala

I'm trying to convert a Java string contains Unicode character in CJK ExtB plan to Decimal NCRs. For example (you could try it with http://people.w3.org/rishida/tools/conversion/ ): "游鍚堃" should ...
1
vote
2answers
963 views

Python urllib.request and utf8 decoding question

I'm writing a simple Python CGI script that grabs a webpage and displays the HTML file in the web browser (acting like a proxy). Here is the script: #!/usr/bin/env python3.0 import urllib.request ...
1
vote
1answer
631 views

Python - BeautifulSoup html parsing handle gbk encoding poorly - Chinese webscraping problem

I have been tinkering with the following script: # -*- coding: utf8 -*- import codecs from BeautifulSoup import BeautifulSoup, NavigableString, UnicodeDammit import urllib2,sys import time try: ...
1
vote
2answers
136 views

Solving the unicode output in Python

I have written some code which sends queries to google and returns the query results. Apparently the contents which are retrieved are in unicode format, so when I put them in a list for example and ...
1
vote
3answers
282 views

Unicode File Writing and Reading in C++?

Can anyone Provide a Simple Example to Read and Write in the Unicode File a Unicode Character ?
1
vote
1answer
212 views

Problem with Django/Dajaxice and international characters

I am having a problem using Djajaxice with international characters... I have a django template...in that template is the following select: <select name="region" id="id" ...
1
vote
1answer
163 views

string to unicode in c#

Hai i want to use unicode in my code.my unicode value is 0100, am adding my unicode string \u with my value. when i use string myVal="\u0100" its working., but when i use like below its not working ...
1
vote
2answers
440 views

How to get number of bytes read from QTextStream

The following code I am using to find the number of read bytes from QFile. With some files it gives the correct file size, but with some files it gives me a value that is approximatively ...
0
votes
1answer
34 views

Unicode values from php server

I am getting values from a MySQL database via php and display them inside an Android ListView. It works fine, but how do I print unicode strings? Like if I do it within Android e.g string a="\u1EA7"; ...
0
votes
3answers
125 views

UnicodeString w/ String Literals vs Hex Values

Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar. UnicodeString s1(0x0040); // @ sign UnicodeString ...
0
votes
3answers
78 views

Getting the char integer value from a std::string & std::wstring

I am attempting to convert a string into a number by summing the int value of each letter together in C++ WinAPI. So in ASCII; the std::string "AA" would equal 130 (65+65) The string can either be a ...
0
votes
1answer
97 views

PHP reading “Unicode” MS Word doc

I''m trying to read some Ms Word Doc in PHP which is in Unicode, some stuff like Hebrew or Arabic. but it reads in binary and turns into some non scenes chars. I googled up some sample codes but non ...
0
votes
2answers
417 views

is there a cross-platform unicode string class that I can use both on Win32 and MacOSX systems?

Also I need locale aware case conversion. .NET do this very well. Do us C++ programmers have to wait 100 years for such thing ? I am aware of the ICU library but it's 20MB and I can't even get to link ...
0
votes
1answer
106 views

Remove unicode strings in rendered template

I'm trying to return a json like object under this address: http://ntt.vipserv.org/data/shows but as a result I'm getting : {'1': {'url': u'http://www.rte.ie/tv/crimecall/', 'image': ...
0
votes
1answer
984 views

Escaped unicode to unicode character in Cocoa

I get from a NSURLConnection a NSData object which I convert with [[NSMutableString alloc] initWithData:[self urlData] encoding:NSUTF8StringEncoding] to a NSMutableString. After some "revision" I ...
-1
votes
2answers
287 views

how to check the string is UNICODE vb.net

Is there any way to check if the string is UNICODE using VB.net. Best Regards inchikka