Have you tried looking at Grant Skinner's RegExp App?
It might help
http://gskinner.com/RegExr/

Ktu

On Mon, Oct 19, 2009 at 1:24 PM, Matt Muller <matthewmul...@gmail.com>wrote:

> Hi there,
>
> issue with regex when trying to test if a char is within a unicode range
>
> var testIsArabic:Boolean = /\u0627/.test(str.charAt(0)); // this works
> testing for arabic chars of unicode 0627
>
> var testIsArabic:Boolean = /[\u0627-\uFFFF]/.test(str.charAt(0)); //// this
> range does not work, returns false
>
> NOTE: the str.charAt(0) is 0627
>
> any ideas?
>
> cheers,
>
> MaTT
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to