I have looked here and from what I understand the following regex simply means "any unicode character sequence". Can someone confirm this please?
Current Regex: /^(?>\P{M}\p{M}*)+$/u
Also if I read the manual it says
a) \P{M} = \PM
b) (?>\PM\pM*) = \X
So with these two things in hand, can I not simplify the regex to?:
Proposed Regex: /^\X+$/u
Which I still don't actually understand...