Tagged Questions

0
votes
1answer
19 views

Funny characters in Visual Studio output window

I have written an External Tool that uses plink.exe to execute gcc on a Linux system and then capture the output back on VS's output window (there is a checkmark in Tools/External …
3
votes
3answers
94 views

Why does stdout decoding fail when adding carriage return?

The following java code does exactly what is expected: 1 String s = "♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪♪♬♪"; 2 for(int i=0; i < s.length(); i++) 3 { 4 System.out.print(s.su …
1
vote
2answers
62 views

How do you think Google is handling this encoding issue?

I recently came across an encoding issue specific to how Firefox encodes URLs directly entered into the address bar. It basically looks like the default Firefox character encoding …
1
vote
3answers
47 views

Why am I running out of bytes for the stream while performing an HTTP POST?

This is driving me nuts: WebRequest request = WebRequest.Create(url); request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; request.C …
0
votes
8answers
138 views

How to check if there are only spaces in string in PHP?

print_r(strlen(trim(' '))); the result is 9 I also tried preg_replace('/[\n\r\t\s]/', '', ' ') but the result is not zero. Please download my code and you will get th …
2
votes
2answers
142 views

How can I set the default file format in the Delphi IDE to UTF8?

Delphi 2009 sets the default file format for new source code files to ANSI, this makes the source code platform-dependent. Even for a new XSD file created in the IDE, which by def …
1
vote
6answers
80 views

Using UTF-8 charset with PHP - are mb functions required?

These past few days I've been working toward converting my PHP code base from latin1 to UTF-8. I've read the two main solutions are to either replace the single byte functions with …
0
votes
2answers
46 views

Zend_JSON:Encode messing up - why!?!??!

My Zend_Json is messing up in encoding an object here. I'm encoding an associative array which has two elements: Element one is another associative array while element 2 is an HTML …
1
vote
2answers
67 views

Ruby: Convert encoded character to actual UTF-8 character

Ruby will not play nice with UTF-8 strings. I am passing data in an XML file and although the XML document is specified as UTF-8 it treats the ascii encoding (two bytes per charact …
3
votes
1answer
56 views

File open error by using codec utf-8 in python

I execute following code on windows xp and python 2.6.4 But it show IOError. How to open file whose name has utf-8 codec. >>> open( unicode('한글.txt', 'euc-kr').encode(' …
1
vote
3answers
32 views

Arabic characters corrupt on landing, fine after refresh - UTF8

I have an php page with mixed Latin and Arabic characters. The charset declaration tag is in the html code and the file is saved as UTF-8. All the text is static and in the php f …
0
votes
2answers
45 views

preg_match and UTF-8 in PHP

I'm trying to search a UTF8-encoded string using preg_match. preg_match('/H/u', "\xC2\xA1Hola!", $a_matches, PREG_OFFSET_CAPTURE); echo $a_matches[0][1]; This should print 1, si …
0
votes
2answers
74 views

Internet Explorer blocked file download; file of “Unknown File Type”

I'm developing a front-end to a Rails application. In cross-browser testing, I immediately discovered that Internet Explorer (apparently all modern versions, but at least IE 7 and …
0
votes
1answer
13 views

Collate information missing when converting a MySQL table from Latin1 to UTF8

I'm converting an existing table such as this: CREATE TABLE `example`(`id` int(10) unsigned NOT NULL AUTO_INCREMENT, `column1` char(32) COLLATE latin1_gene …
8
votes
6answers
195 views

Guessing the encoding of text represented as byte[] in Java

Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely …

1 2 3 4 5 32 next
15 30 50 per page