0

I have a strings in different languages. I need to get only characters without numbers, '-', '/', ')', ... But seams JavaScript regexp '\w' matches only English.
http://jsfiddle.net/d9BRC/

Oleg Dats
  • 3,933
  • 9
  • 38
  • 61

1 Answers1

3

After a bit of research, it seems \w does not handle unicode characters, you can do this with \p{L} (Letters), but again javascript does not support this.

Here is a solution, taken from this answer

Community
  • 1
  • 1
epoch
  • 16,396
  • 4
  • 43
  • 71