how can i parse a string to remove all non english characters in php

right now I want to remove things like

სოფო ნი�

Thanks :)

link|improve this question

I assume you mean non-Latin/Roman alphabetic characters. – Michael Petrotta Sep 6 '10 at 23:44
yeah sorry that's what I meant – Belgin Fish Sep 6 '10 at 23:45
feedback

2 Answers

up vote 11 down vote accepted
$str = preg_replace('/[^\00-\255]+/u', '', $str);
link|improve this answer
Very nicely done. Learned something new! – Brad F Jacobs Sep 6 '10 at 23:57
1  
I'm happy that I can help and share the knowledge :) – aularon Sep 7 '10 at 0:12
feedback

By using preg_replace()

$string = "some სოფო text"; 
$string = preg_replace('/[^a-z0-9_ ]/i', '', $string); 

echo $string;

Granted, you will need to expand the preg_replace pattern, but that is one way to do it. There is probably a better way, I just do not know it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.