How can I use Unicode-aware regular expressions in JavaScript?
For example, there should be something akin to \\w that can match any code-point in Lette
\\w
As mentioned in other answers, JavaScript regexes have no support for Unicode character classes. However, there is a library that does provide this: Steven Levithan's excellent XRegExp and its Unicode plug-in.