[pcre-dev] [Bug 2512] Feature Request: Character class subtr…

Top Page
Delete this message
Author: admin
Date:  
To: pcre-dev
Subject: [pcre-dev] [Bug 2512] Feature Request: Character class subtraction (like W3C does)
https://bugs.exim.org/show_bug.cgi?id=2512

Zoltan Herczeg <hzmester@???> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hzmester@???


--- Comment #1 from Zoltan Herczeg <hzmester@???> ---
Oh, it is actually pretty easy with assertions:

/[\p{L}](?<![\p{Arabic}])/

or

/(?![\p{Arabic}])[\p{L}]/

--
You are receiving this mail because:
You are on the CC list for the bug.