Class SharedRegex
java.lang.Object
net.datenwerke.rs.utils.validator.shared.SharedRegex
-
Field Details
-
KEY_REGEX
- See Also:
-
USERNAME_REGEX
^ asserts the start of the string. [\p{L}\p{N}_\-\.]+ matches one or more characters that are either: \p{L}: Any Unicode letter. \p{N}: Any Unicode number. _, -, or .: These characters are explicitly allowed. $ asserts the end of the string.A- See Also:
-
-
Constructor Details
-
SharedRegex
public SharedRegex()
-