Skip to content

Negated named properties (\P)

Compare
Choose a tag to compare
@tom-lord tom-lord released this 04 Mar 12:58
· 243 commits to master since this release

Support already existed for patterns like:

/\p{Space}/.examples
/\p{^Space}/.examples

Now added additional support for negating (or double-negating!) via \P:

/\P{Space}/.examples
/\P{^Space}/.examples