According to the documentation of java.util.Pattern, the POSIX character class \p{Graph} ([:graph:] in POSIX notation) matches “a visible character: [\p{Alnum}\p{Punct}]“. However, this is limited to ASCII characters only. Is there an equivalent class or expression for matching (visible) Unicode characters?
According to the documentation of java.util.Pattern , the POSIX character class \p{Graph} ( [:graph:]
Share
1 Answer