Open omartan opened 4 years ago
Yes, Apple uses ICU pretty much everywhere. It's very similar to PCRE, except it lacks \K
, but it's apparently based on Java. From https://unicode-org.github.io/icu/userguide/strings/regexp.html:
{|}~. From that list, ICU omits $+<=>^
|~ And I would love ICU support in regexr.
Hmm, so I'm trying to figure out what engine does Swift uses and it seems based on this sources, 1 . https://developer.apple.com/documentation/foundation/nsregularexpression
It is essentially PCRE?