Tool that removes non-ASCII characters from input
Sometimes it’s necessary to remove particular characters, say those that belong to some local encoding, from an input. And sometimes we may be curious as what is output of preg_replace('/[^(\x20-\x7F)]*/','',’’, $str[0]))
preg_replace is a PHP function that performs a regular expression search and replace.





