Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I simply need to compare two strings, which contains a special char (eg. the danish å). The first one coming from event.dataTransfer.files[0].name and the second one from the server when the file transfer has completed.

A lot of code is needed for this to work, so here is a basic sample not involving uploading files: http://jsfiddle.net/hZadw/4/

Some code from my sample:

var filenameFromJS = "Designhåndbog.pdf";
var filenameFromServer = "Designhåndbog.pdf";

print(filenameFromJS == filenameFromServer); // Prints false

I guess the problem is that event.dataTransfer.files[0].name comes directly from my filesystem which is OS X, so the problem may not even occur in Windows.

How to make the two strings return true when compared with ==?

The solution

The solution is to use unicode normalization as slevithan pointed out. I forked my original jsfiddle to make a version using the normalization lib suggested by slevithan. Link: http://jsfiddle.net/GWZ8j/1/. Thanks for all the replies.

share|improve this question
See this article about == vs. === stackoverflow.com/questions/359494/… – Steve May 29 '12 at 19:53
3  
@Steve When both operands are of the same type, it does not matter if you use loose or strict comparison. – PointedEars May 29 '12 at 20:01

2 Answers

up vote 5 down vote accepted

Unlike what some other people here have said, this has nothing to do with encodings. Rather, your two strings use different code points to render the same visual characters.

To solve this correctly, you need to perform Unicode normalization on the two strings before comparing them. Unforunately, JavaScript doesn't have this functionality built in. Here is a JavaScript library that can perform the normalization for you: https://github.com/walling/unorm

share|improve this answer
1  
Oh, I was hoping not to get this answer :-) That I was just missing the obvious and wouldn't need a library for this simple task. Thanks for the answer I'll give it a try. – tougher May 29 '12 at 20:21
You are right, I have missed that CC 8A is the UTF-8 code sequence for U+30A COMBINING RING ABOVE, which is preceded by a. The other string has C3 A5 which encodes U+00E5 LATIN SMALL LETTER A WITH RING ABOVE in UTF-8. IIRC, Mac OS prefers the combining characters, while other OSes prefer the single-glyph form. It should be possible to have the server convert either one, though, so there is no large client-side library necessary. – PointedEars May 29 '12 at 21:47
PointedEars, that's not necessarily possible or ideal. E.g., you might not want to do a server round trip just to perform a string comparison, or you might be using JavaScript on the server. @Tougher ,There is a proposal to add Unicode normalization to future versions of JavaScript. See strawman:unicode_normalization. – slevithan May 30 '12 at 3:56

UTF-8 is a complex thing. The charset has two different codes for characters such as á, é etc. As you already see in the URL encoded version, the HEX bytes of which the character is made differ for both versions.

See this answer for more information.

share|improve this answer
JFTR: Unicode is not UTF-8. Unicode is a standard for a character set and several encodings; UTF-8 is one of those encodings. – PointedEars May 29 '12 at 20:02
@PointedEars Fixed. – user2428118 May 29 '12 at 20:08
Now you are saying that UTF-8 was a character set. It is not. I am also rather certain that your premise is false: a UTF-8 code sequence may not begin with 0xCC. – PointedEars May 29 '12 at 20:12
You're right, I should have called it "encoding", as it appears (w3.org/TR/html4/charset.html). The HTML code is <meta charset=UTF-8> (HTML5) or <meta http-equiv=Content-Type content='text/html; charset=UTF-8'> however, so that's somewhat misleading. – user2428118 May 29 '12 at 20:24
Yes, I guess we will have to live with that mistake from the early Internet drafts (I'm talking RFC 822 and friends here) for a long time to come. – PointedEars May 29 '12 at 21:14
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.