Search Results

4
votes

How far should one take e-mail address validation?

With international domain names almost everything is possible: Håkan.Söderström@malmö.se punnycode@XN--0ZWM56D.XN--HGBK6AJ7F53BBA 试@例子.测试.مثال.آزمای …
3
votes

Search Javascript Array for Regex and return True/False (0/1) if found

Looks like you want to use an hash-mapp instead: var myhash = {}; myhash["test1"] = [1.000,1.000]; myhash["test2"] = [2.000,2.000]; myhash["test3"] = [3.000,3.000]; function searc …
1
vote

Sanitize html encoded text (#decimal notation) from AntiXSS v3 output

Your problem is that C# is missinterpretating your regexp. You need to escape the #-sign. Without the escape it matches too much. private static Regex _whitelist = new Regex(@" …
2
votes

Unicode Regex; Invalid XML characters

For systems that internally stores the codepoints in UTF-16, it is common to use surrogate pairs (xD800-xDFFF) for codepoints above …
3
votes

What is the optimal way to replace a series of characters in a string in JavaScript

I have benchmarked your original version, Ates Gorals hash, my improved hash, a version using switch, and the simple solution. The winner? The simple solution! With matching data (string of …