[Webkit-unassigned] [Bug 200190] JavaScriptCore's Regex can't match the content.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 30 09:34:49 PDT 2019


https://bugs.webkit.org/show_bug.cgi?id=200190

Michael Saboff <msaboff at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
           Assignee|webkit-unassigned at lists.web |msaboff at apple.com
                   |kit.org                     |

--- Comment #5 from Michael Saboff <msaboff at apple.com> ---
The loop limit is compiled in and can't be changed via JavaScript.

We consider this a bug and are working on a resolution.  In the mean time, is it possible to change your regex?  For example, do you need the .* at the beginning and end of the capture group?  If you changed your regex to /.*(d.*){5,}/ you will get the same answer.  If you want an even more efficient regex, you could use /([^d]*d[^d]*){5,}/.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190730/cffca587/attachment-0001.html>


More information about the webkit-unassigned mailing list