I'm trying to test whether a string contains at least one (unicode) character above code point 0x7f
(i.e. a non-ascii character).
I've tried the following ideas (and a few others), but they don't seem to work:
var rx:RegExp;
rx = /[^\\x00-\\x7f]/; // negate ascii code point 0 to 127
trace( rx.test( '\u0080' ) ); // true (expected true)
trace( rx.test( 'b' ) ); // true (expected false)
rx = /[^\u0000-\u007f]/; // negate unicode code point 0 to 127
trace( rx.test( '\u0080' ) ); // false (expected true)
trace( rx.test( 'b' ) ); // false (expected false)
Can somebody help me understand why this is not working as expected and how to do it properly?
I'm not sure if AS3 supports unicode RegExp like, for example, Python does. I can suggest following solution, that will help you to do what you want, but I'm sure it's slow for long strings.