JavaScript validation issue with international characters - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T22:46:42Zhttp://stackoverflow.com/feeds/question/1073412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters2JavaScript validation issue with international charactersJeff Atwood2009-07-02T09:31:44Z2009-07-02T10:58:32Z
<p>We use the excellent <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" rel="nofollow">validator plugin for jQuery</a> here on Stack Overflow to do client-side validation of input before it is submitted to the server.</p>
<p>It generally works well, however, this one has us scratching our heads.</p>
<p>The following validator method is used on the ask/answer form for the user name field (note that you must be <strong>logged out</strong> to see this field on the live site; it's on every <code>/question</code> page and the <code>/ask</code> page)</p>
<pre><code>$.validator.addMethod("validUserName",
function(value, element) {
return this.optional(element) ||
/^[\w\-\s\dÀÈÌÒÙàèìòùÁÉÍÓÚÝáéíóúýÂÊÎÔÛâêîôûÃÑÕãñõÄËÏÖÜäëïöüçÇߨøÅ寿ÞþÐð]+$/.test(value); },
"Can only contain A-Z, 0-9, spaces, and hyphens.");
</code></pre>
<p>Now this regex looks weird but it's pretty simple:</p>
<ul>
<li>match the beginning of the string (^)</li>
<li>match any of these..
<ul>
<li>word character (\w)</li>
<li>dash (-)</li>
<li>space (\s)</li>
<li>digit (\d)</li>
<li>crazy moon language characters (àèìòù etc)</li>
</ul></li>
<li>now match the end of the string ($)</li>
</ul>
<p>Yes, we ran into the <a href="http://www.hanselman.com/blog/InternationalizedRegularExpressions.aspx" rel="nofollow">Internationalized Regular Expressions</a> problem. JavaScript's definition of "word character" does not include international characters.. at all.</p>
<p>Here's the weird part: even though we've gone to the trouble of manually adding tons of the valid international characters to the regex, it <em>doesn't work</em>. You cannot enter these international characters in the input box for user name without getting the..</p>
<blockquote>
<p>Can only contain A-Z, 0-9, spaces, and hyphens</p>
</blockquote>
<p>.. validation return!</p>
<p>Obviously <strong>the validation <em>is</em> working for the other parts of the regex</strong>.. so.. what gives?</p>
<p>The other strange part is that this validation works in the browser's JavaScript console but not when executed as a part of our standard *.js includes.</p>
<blockquote>
<p>/^[\w-\sÀÈÌÒÙàèìòùÁÉÍÓÚÝáéíóúýÂÊÎÔÛâêîôûÃÑÕãñõÄËÏÖÜäëïöüçÇߨøÅ寿ÞþÐð]+$/
.test('ÓBill de hÓra') = true</p>
</blockquote>
<p>We've run into some really bizarre international character issues in JavaScript code before, resulting in some very, very nasty hacks. We'd like to understand what's going on here and why. Please enlighten us!</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters/1073459#10734591Answer by dusoft for JavaScript validation issue with international charactersdusoft2009-07-02T09:41:21Z2009-07-02T09:41:21Z<p>international characters listed are part of extended ASCII. the ones added by you are certainly not.</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters/1073484#10734841Answer by Colin for JavaScript validation issue with international charactersColin2009-07-02T09:46:33Z2009-07-02T09:46:33Z<p>Seeing as the statement works in the console, could this have to do the way your .js files are saved (i.e. ascii or UTF-8) and that the browser is loading them thusly and in the process translates the characters?</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters/1073489#10734892Answer by Boldewyn for JavaScript validation issue with international charactersBoldewyn2009-07-02T09:47:27Z2009-07-02T10:58:32Z<p>What is the character encoding of the JS file?</p>
<p>For XML QNames I use this RegExp:</p>
<pre><code>/**
* Definition of an XML Name
*/
var NameStartChar = "A-Za-z:_\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D"+
"\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF"+
"\uF900-\uFDCF\uFDF0-\uFFFD\u010000-\u0EFFFF";
var NameChar = NameStartChar+"\\-\\.0-9\u00B7\u0300-\u036F\u203F-\u2040";
var Name = "^["+NameStartChar+"]["+NameChar+"]*$";
RegExp (Name).test (value);
</code></pre>
<p>It works like a charm also with internationalized characters. Note the escaping. Due to that I'm able to restrict the JS file to <strong>ASCII</strong> characters only. Therefore I don't get into trouble when dealing with ISO-8859 vs UTF-8 charsets.</p>
<p>This is no more true, if you use character encodings where ASCII is no real subset (like, e.g., in Asia UTF-16).</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters/1073545#10735457Answer by Jörn Zaefferer for JavaScript validation issue with international charactersJörn Zaefferer2009-07-02T10:03:04Z2009-07-02T10:11:37Z<p>I think the email and url validation methods are a good reference here, eg. the email method:</p>
<pre><code>email: function(value, element) {
return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);
},
</code></pre>
<p><a href="http://projects.scottsplayground.com/email%5Faddress%5Fvalidation/lib/email.js." rel="nofollow">The script to compile that regex</a>. <a href="http://projects.scottsplayground.com/iri/lib/iri.js" rel="nofollow">Or the one for URLs</a>.</p>
<p>In other words, replacing your arbitraty list of "crazy moon" characters with this could help:</p>
<pre><code>[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]
</code></pre>
<p>Basically this avoids the character encoding issues you have elsewhere by replacing the needs-encoding characters with more general defintions. While not necessarly more readable, so far its shorter then your full list.</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters/1073559#10735597Answer by scott for JavaScript validation issue with international charactersscott2009-07-02T10:07:00Z2009-07-02T10:07:00Z<p>This isn't really an answer but I don't have 50 rep yet to add a comment... It can definately be attributed to encoding issues.</p>
<p>Yea "ECMA shouldn't care about encoding..." blah blah, well if you're on firefox, go to <strong>View > Character Encoding > Western (ISO-8859-1)</strong> then try using the Name field.</p>
<p>It works fine for me after changing the encoding manually (granted the rest of the page doesn't like the encoding switch, :P)</p>
<p>(on IE8 you can go to <strong>Page > Encoding > Western European (Windows)</strong> to get the same effect)</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters/1073567#10735671Answer by NickFitz for JavaScript validation issue with international charactersNickFitz2009-07-02T10:09:39Z2009-07-02T10:09:39Z<p>Use something like Fiddler or Charles (not Firebug's Net panel, or anything else that's actually inside the browser) to examine what's actually coming over the wire. It's almost certainly an encoding issue: either the file has been saved in some Microsoft character set and is being sent as UTF-8, or maybe the other way around.</p>
<p>In the case of JS RegExps you can, as Boldewyn points out, avoid these problems by specifying the Unicode code point for the characters you want that are outside the US-ASCII range. It would still be as well to make sure you aren't mixing up encodings between the place where the file is saved and the place where it's served, though.</p>