how can i to remove all characters non-language ?
i want to remove characters like this below, and all other of not language characters:
i using this:
preg_replace("/[^a-z0-9A-Z\-\'\|\!\.\?\:\)\(\;\*\"]/u", " ", $text );
this is good for english, i need to approve all language characters, like Russian,arabic,hebrew,japan...
Are there any string functions I can use to leave all language characters?
thanks