Hello,

I am trying to extract a number out of a string that is in utf-8 and contains chines characters.

This unfortunatelly does not work:

                preg_match('{(\d+)}', $details, $m);
                $number = $m[1];

I also tried to utf8decode it, but still, no luck.

Does anybody know how to overcome this problem?

Regards, Merlin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to