[pcre-dev] [Bug 2432] Fail with Unicode character scripts wh…

Top Page
Delete this message
Author: admin
Date:  
To: pcre-dev
Old-Topics: [pcre-dev] [Bug 2432] New: Fail with Unicode character scripts when JIT is enabled
Subject: [pcre-dev] [Bug 2432] Fail with Unicode character scripts when JIT is enabled
https://bugs.exim.org/show_bug.cgi?id=2432

Hamid <halaeiv@???> changed:

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


--- Comment #2 from Hamid <halaeiv@???> ---
According to the feedback my PHP bug report received from developers, the bug
still exists in 10.34. Here is the summary of PHP bug report,
https://bugs.php.net/bug.php?id=79363:

Test script:
---------------
$str = 'lower UPPER';
echo(preg_replace('/[\p{L}\p{Arabic}]/', '0', $str));
echo(preg_replace('/[^\p{L}\p{Arabic}]/', '0', $str));

Expected result:
----------------
00000 00000
lower0UPPER

PHP 7.4.3 (pcre 10.33) results:
-------------------------------
lower000000
00000 UPPER

PHP 7.4.4-dev (pcre 10.34) results:
-----------------------------------
00000000000
lower UPPER

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