Class SharedRegex

java.lang.Object
net.datenwerke.rs.utils.validator.shared.SharedRegex

public class SharedRegex extends Object
  • Field Details

    • KEY_REGEX

      public static final String KEY_REGEX
      See Also:
    • USERNAME_REGEX

      public static final String 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()