I ran the following command from the command line:
pcretest -C
And received the following output:
PCRE version 4.5 01-December-2003
Compiled with
UTF-8 support
Newline character is LF
Internal link size = 2
POSIX malloc threshold = 10
Default match limit = 10000000
Match recursion uses stack
But, I learned about this command after reading this thread:
http://www.linux-archive.org/centos/118 ... cre-2.html
(you will have to scroll down about halfway to the post at 07-09-2008, 05:27 PM by Amitava Shee)
And on an Ubuntu system that did work for that person they had received the following output from pcretest:
Compiled with
* UTF-8 support
* Unicode properties support
* Newline sequence is LF
* R matches all Unicode newlines
* Internal link size = 2
* POSIX malloc threshold = 10
* Default match limit = 10000000
* Default recursion depth limit = 10000000
* Match recursion uses stack
The difference is the Unicode Properties Support in the Ubuntu system that seems to be required.
Any help on how I could add the Unicode Properties support into PCRE?