How to specify a unicode range in a RegExp?
The problem is: check a single word if belongs to a given language character set. So I think I have to instantiate a RegExp with expression [\u4E00-\u9FFF] (for Chinese language) in order to test against the specified word. But it does not work? Is this a bug with unicode ranges?
