You have already found the properties of the Unicode character.
You can invert the property of a character by changing the leading case "p"
eg.
\p{L} matches all letters
\p{L} matches all characters that do not have a property letter.
So, if you think that \P{Cc}- this is what you need, then it \P{Cc}will correspond to the opposite.
More on regular-expressions.info
, \P{Cc} , , , , . (0x09), Linefeed (0x0A) (0x0D).
, :
[^\P{Cc}\t\r\n]
[^...] , , " " ( , ), tab, CR LF.