active questions tagged unicode-string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:14:18Z http://stackoverflow.com/feeds/tag/unicode-string http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1688278/lpstr-how-to-free-memory-after-using 0 LPSTR how to free memory after using viswanathan 2009-11-06T15:21:20Z 2009-11-06T16:22:15Z <p>Hi </p> <p>Suppose i have a LPSTR variable. How do i free the memory after using the variable. Is it </p> <pre><code>LPSTR szFileName = GetSBCSBuffer(sFilePath); // sFilePath is a CString delete szFileName; </code></pre> <p>OR</p> <pre><code>delete []szFileName; </code></pre> <p>Kindly advise</p> http://stackoverflow.com/questions/1371077/displaying-a-unicode-text-in-c 2 Displaying a unicode text in C# Mugunth Kumar 2009-09-03T01:58:30Z 2009-09-03T02:44:13Z <p>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.</p> <p>Now MS Mincho displays Japanese properly, but for Chinese I have to use Sim Sun. How can I distinguish between the two?</p> <p>How can I ensure that unicode text are displayed properly regardless of the font/language?</p> http://stackoverflow.com/questions/977635/how-to-open-file-in-php-that-has-unicode-characters-in-its-name 1 How to open file in PHP that has unicode characters in its name? Darko Miletic 2009-06-10T19:23:06Z 2009-06-15T23:31:11Z <p>For example I have a filename like this - проба.xml and I am unable to open it from PHP script.</p> <p>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 file_get_contents:</p> <pre><code>$fname = "проба.xml"; file_get_contents($fname); </code></pre> <p>I get error that file does not exist. The reason for this is that in Windows (XP) all file names with non-latin characters are unicode (UTF-16). OK so I tried this:</p> <pre><code>$fname = "проба.xml"; $res = mb_convert_encoding($fname,'UTF-8','UTF-16'); file_get_contents($res); </code></pre> <p>But the error persists since file_get_contents can not accept unicode strings...</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/998302/hash-method-and-unicodeencodeerror 0 Hash method and UnicodeEncodeError Martin 2009-06-15T20:48:13Z 2009-06-15T21:02:40Z <p>In Python 2.5, I have the following hash function:</p> <pre><code>def __hash__(self): return hash(str(self)) </code></pre> <p>It works well for my needs, but now I started to get the following error message. Any idea of what is going on?</p> <pre><code>return hash(str(self)) UnicodeEncodeError: 'ascii' codec can't encode character u'\ufeff' in position 16: ordinal not in range(128) </code></pre> <p>How could I fix this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/909886/reading-raw-unicode-strings-in-python 1 Reading "raw" Unicode-strings in Python Britta 2009-05-26T09:54:22Z 2009-05-26T10:42:40Z <p>Dear all, </p> <p>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.</p> <p>I have a mixed source document which contains html, xml, latex and other textformats and which I try to get into a latex-only format. </p> <p>Therefore, I have used python to recognise the different commands as regular expresssions and replace them with the adequate latex command. Everything has worked out fine so far.</p> <p>Now I am left with some "raw-type" Unicode signs, such as the greek letters. Unfortunaltly is just about to much to do it by hand. Therefore, I am looking for a way to do this the smart way too. Is there a way for Python to recognise / read them? And how do I tell python to recognise / read e.g. Pi written as a Greek letter?</p> <p>A minimal example of the code I use is:</p> <pre><code>fh = open('SOURCE_DOCUMENT','r') stuff = fh.read() fh.close() new_stuff = re.sub('READ','REPLACE',stuff) fh = open('LATEX_DOCUMENT','w') fh.write(new_stuff) fh.close() </code></pre> <p>I am not sure whether it is an important information or not, but I am using Python 2.6 running on windows. </p> <p>I would be really glad, if someone might be able to give me hint, at least where to find the according information or how this might work. Or whether I am completely wrong, and Python can't do this job ...</p> <p>Many thanks in advance.<br /> Cheers,<br /> Britta</p> http://stackoverflow.com/questions/655053/weird-sql-behavior-why-is-this-query-returning-nothing 3 Weird SQL Behavior, why is this query returning nothing? Newbie 2009-03-17T16:42:23Z 2009-04-14T16:08:28Z <p>Assume there is a table named "myTable" with three columns: </p> <pre><code>{**ID**(PK, int, not null), **X**(PK, int, not null), **Name**(nvarchar(256), not null)}. </code></pre> <p>Let {4, 1, аккаунт} be a record on the table.</p> <pre><code>select * from myTable as t where t.ID=4 AND t.X = 1 AND ( t.Name = N'аккаунт' ) select * from myTable as t where t.ID=4 AND t.X = 1 AND ( t.Name LIKE N'%аккаунт%' ) </code></pre> <p>The first query return the record, however, the second does not? Why?</p> <p>Systems where this issues are experienced:</p> <p>*Windows XP - Professional - Version 2002 - SP3<br> <em>Server Collation:</em> Latin1_General_CI_AS<br> <em>Version:</em> 9.00.3073.00<br> <em>Level:</em> SP2<br> <em>Edition:</em> Developer Edition<br></p> <p><em>Sever Collation:</em> SQL_Latin1_General_CP1_CI_AS<br> <em>Version:</em> 9.00.3054.00<br> <em>Level:</em> SP2<br> <em>Edition:</em> Enterprise Edition<br></p> <p>Results:</p> <pre><code>SELECT SERVERPROPERTY('SQLCharSetName') iso_1 Using OSQL.exe 0x30043A043A04300443043D04420400000000000000000000000000000000 0x3F3F3F3F3F3F3F0000000000000000000000000000000000000000000000 0x253F3F3F3F3F3F3F25000000000000000000000000000000000000000000 SELECT CAST(name AS BINARY), CAST(N'аккаунт' AS BINARY), CAST(N'%аккаунт%' AS BINARY) FROM myTable t WHERE t.ID = 4 AND t.X = 1 CAST(name AS BINARY) 0x30043A043A04300443043D04420400000000000000000000000000000000 CAST(N'аккаунт' AS BINARY) 0x3F3F3F3F3F3F3F0000000000000000000000000000000000000000000000 CAST(N'%аккаунт%' AS BINARY) 0x253F3F3F3F3F3F3F25000000000000000000000000000000000000000000 </code></pre> http://stackoverflow.com/questions/635709/escaped-unicode-to-unicode-character-in-cocoa 0 Escaped unicode to unicode character in Cocoa papr 2009-03-11T18:12:41Z 2009-03-11T19:06:32Z <p>I get from a <code>NSURLConnection</code> a <code>NSData</code> object which I convert with</p> <pre><code>[[NSMutableString alloc] initWithData:[self urlData] encoding:NSUTF8StringEncoding] </code></pre> <p>to a <code>NSMutableString</code>. After some "revision" I display it in a <code>NSTextField</code>.<br /> But when the response contains a more-than-utf8-string this is displayed:</p> <p><img src="http://b5.s3.p.quickshareit.com/files/screenshot%5F466c60a6beaa2b390.png" alt="problem" /></p> <p>This "&amp;#x27A1" should be <code>one</code> unicode character. The char after <code>.ws/</code> seems to be an other problem which I would like to have solved. :)</p> <p>It would be nice if there was a way without Carbon.</p> http://stackoverflow.com/questions/374318/conversion-of-unicode-string-in-python 1 conversion of unicode string in python rejinacm 2008-12-17T11:52:51Z 2009-01-08T11:27:17Z <p>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 bits,double,float,string,unsigned and signed 8 bit,unsigned and signed 16 bit, unsigned and signed 32 bit,unsigned and signed 64 bit.</p> <p>I need help from u people.</p> http://stackoverflow.com/questions/312118/why-the-excess-memory-for-strings-in-delphi 6 Why the Excess Memory for Strings in Delphi? lkessler 2008-11-23T04:38:34Z 2008-11-25T13:17:42Z <p>I'm reading in a large text file with 1.4 million lines that is 24 MB in size (average 17 characters a line).</p> <p>I'm using Delphi 2009 and the file is ANSI but gets converted to Unicode upon reading, so fairly you can say the text once converted is 48 MB in size.</p> <p>( Edit: I found a much simpler example ... )</p> <p>I'm loading this text into a simple StringList:</p> <blockquote> <pre><code> AllLines := TStringList.Create; AllLines.LoadFromFile(Filename); </code></pre> </blockquote> <p>I found that the lines of data seem to take much more memory than their 48 MB.</p> <p>In fact, they use 155 MB of memory.</p> <p>I don't mind Delphi using 48 MB or even as much as 60 MB allowing for some memory management overhead. But 155 MB seems excessive.</p> <p>This is not a fault of StringList. I previously tried loading the lines into a record structure, and I got the same result (160 MB).</p> <p>I don't see or understand what could be causing Delphi or the FastMM memory manager to use 3 times the amount of memory necessary to store the strings. Heap allocation can't be that inefficient, can it? </p> <p>I've debugged this and researched it as far as I can. Any ideas as to why this might be happening, or ideas that might help me reduce the excess usage would be much appreciated. </p> <p>Note: I am using this "smaller" file as an example. I am really trying to load a 320 MB file, but Delphi is asking for over 2 GB of RAM and running out of memory because of this excess string requirement.</p> <p>Addenum: Marco Cantu just came out with <a href="http://blog.marcocantu.com/blog/d2009_whitepaper1.html" rel="nofollow">a White Paper on Delphi and Unicode</a>. Delphi 2009 has increased the overhead per string from 8 bytes to 12 bytes (plus maybe 4 more for the actual pointer to the string). An extra 16 bytes per 17x2 = 34 byte line adds almost 50%. But I'm seeing over 200% overhead. What could the extra 150% be?</p> <p><hr /></p> <p>Success!! Thanks to all of you for your suggestions. You all got me thinking. But I'll have to give Jan Goyvaerts credit for the answer, since he asked:</p> <blockquote> <p>...why are you using TStringList? Must the file really be stored in memory as separate lines?</p> </blockquote> <p>That led me to the solution that instead of loading the 24 MB file as a 1.4 million line StringList, I can group my lines into natural groups my program knows about. So this resulted in 127,000 lines loaded into the string list. </p> <p>Now each line averages 190 characters instead of 17. The overhead per StringList line is the same but now there are many fewer lines.</p> <p>When I apply this to 320 MB file, it no longer runs out of memory and now loads in less than 1 GB of RAM. (And it only takes about 10 seconds to load, which is pretty good!)</p> <p>There will be a little bit extra processing to parse the grouped lines, but it shouldn't be noticeable in real time processing of each group.</p> <p>(In case you were wondering, this is a genealogy program, and this may be the last step I needed to allow it to load all the data about one million people in a 32-bit address space in less than 30 seconds. So I've still got a 20 second buffer to play with to add the indexes into the data the will be required to allow display and editing of the data.)</p> http://stackoverflow.com/questions/258407/unicodestring-to-null-terminated 0 UNICODE_STRING to Null terminated Dimitris 2008-11-03T11:40:59Z 2008-11-03T18:58:45Z <p>I need to convert a UNICODE_STRING structure to a simple NULL TERMINATED STRING.</p> <pre><code>typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } UNICODE_STRING, *PUNICODE_STRING; </code></pre> <p>I can't find a clean sollution on MSDN about it. Anyone been there? I am not using .net so I need a native API sollution.</p> <p>Thanks a lot!</p>