In PHP I use this PCRE-regular expression:
\p{Ll}
And it matches lower case letters like a
, b
, c
, but not ä
, ö
, ü
, ß
. (it correctly does not match upper case characters, numbers, etc)
See online: https://regexr.com/440eq
Why does it not match those german unicode small caps characters? And how can I make it match them?
See also the official PHP Unicode character properties documentation.