Tagged Questions

0
votes
2answers
29 views

LPSTR how to free memory after using

Hi Suppose i have a LPSTR variable. How do i free the memory after using the variable. Is it LPSTR szFileName = GetSBCSBuffer(sFilePath); // sFilePath is a CString delete szFileName; OR delete …
2
votes
3answers
301 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. …
1
vote
2answers
381 views

How to open file in PHP that has unicode characters in its name?

For example I have a filename like this - проба.xml and I am unable to open it from PHP script. If I setup php script to be in utf-8 than all the text in script is utf-8 thus when I pass this to …
0
votes
2answers
56 views

Hash method and UnicodeEncodeError

In Python 2.5, I have the following hash function: def __hash__(self): return hash(str(self)) It works well for my needs, but now I started to get the following error message. Any idea of what is …
1
vote
3answers
229 views

Reading “raw” Unicode-strings in Python

Dear all, I am quite new to Python so my question might be silly, but even though reading through a lot of threads I didn't find an answer to my question. I have a mixed source document which …
3
votes
3answers
454 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 …
0
votes
1answer
365 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
vote
1answer
779 views

conversion of unicode string in python

I need to convert unicode strings in Python to other types such as unsigned and signed int 8 bits,unsigned and signed int 16 bits,unsigned and signed int 32 bits,unsigned and signed int 64 …
6
votes
8answers
1k views

Why the Excess Memory for Strings in Delphi?

I'm reading in a large text file with 1.4 million lines that is 24 MB in size (average 17 characters a line). I'm using Delphi 2009 and the file is ANSI but gets converted to Unicode upon reading, so …
0
votes
2answers
315 views

UNICODE_STRING to Null terminated

I need to convert a UNICODE_STRING structure to a simple NULL TERMINATED STRING. typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } …