I am looking for a regex to change all non-english and/or arabic into underscore "_"
Currently I have the following code which works but I think that I've got the wrong unicode
range as it allows Chinese & other languages I don't require in my script.
$title=~tr/[a-z0-9_\x7f-\xff]/_/cd;
Any help would be appreciated