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.
==vs.===stackoverflow.com/questions/359494/… – Steve May 29 '12 at 19:53