I used this regex to clear string from any non-alphanumeric characters
/[^0-9a-z]/gi
However, in my program there some strings with Arabic, Hebrew, Chinese and Dutch chars that are cleaned by this regex. For future support I would like to use regex that will not clean any alphanumeric chars on any language. Is it possible to create such one?