Why am I not getting a match when I have the case insensitive flag i here?
Regex Pattern:
\(?<!\p{L})x\i
Input:
ß x
Output: NO MATCH (WHY?)
Regex Pattern:
\(?<!\p{L})x\
Input:
ß x
Output: MATCHES x
Regex Pattern:
\(?<!\p{L})x\i
Input:
ß x
(with two spaces)
Output: MATCHES x