downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Introduction> <preg_split
[edit] Last updated: Fri, 11 May 2012

view this page in

Regular Expression (POSIX Extended)



Introduction> <preg_split
[edit] Last updated: Fri, 11 May 2012
 
add a note add a note User Contributed Notes POSIX Regex
Daniel Klein 22-Mar-2012 11:31
PCRE has very good utf-8 support. Simply add the /u modifier to your pattern.

preg_match('/non-utf-8 matching pattern/', $string);
preg_match('/utf-8 matching pattern/u', $string);
arekm 04-Dec-2011 09:53
If you switch to PCRE world functions note that pcre doesn't support UTF-8 well.

There are limitations - read "POSIX CHARACTER CLASSES" or "UNICODE CHARACTER PROPERTY SUPPORT" chapter at http://www.pcre.org/pcre.txt.
Ray dot Paseur at Gmail dot com 29-Oct-2011 12:34
The POSIX functions are deprecated.  Instead of the "ereg" collection you want to use something from the PCRE world.
http://www.php.net/manual/en/book.pcre.php

 
show source | credits | sitemap | contact | advertising | mirror sites