Name: Anonymous 2012-05-30 21:23
Writing a greasemonkey script to block this unicode shit spam. Can I use regex with unicode? I have almost no experience with uni, any help would be appreciated.
function containsNonLatinCodepoints(s) {
return /[^\\u0000-\\u00ff]/.test(s);
}