You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
993 B
23 lines
993 B
export const P_ALPHANUM = '[a-z0-9]'; |
|
export const P_ALPHANUM_DASH = '[a-z0-9-]'; |
|
export const P_HEX = '[0-9a-f]'; |
|
export const P_OCTET = '(?:25[0-5]|(?:2[0-4]|1[0-9]|[1-9]|)[0-9])'; |
|
|
|
export const P_IPV4 = `(?:${P_OCTET}[.]){3}${P_OCTET}`; |
|
export const P_UUID = `${P_HEX}{8}-(?:${P_HEX}{4}-){3}${P_HEX}{12}`; |
|
|
|
export const REP_DOMAIN = new RegExp( |
|
`^(?:${P_ALPHANUM}(?:${P_ALPHANUM_DASH}{0,61}${P_ALPHANUM})?[.])+${P_ALPHANUM}${P_ALPHANUM_DASH}{0,61}${P_ALPHANUM}$`, |
|
); |
|
|
|
export const REP_IPV4 = new RegExp(`^${P_IPV4}$`); |
|
|
|
export const REP_IPV4_CSV = new RegExp(`^(?:${P_IPV4}\\s*,\\s*)*${P_IPV4}$`); |
|
|
|
// Peaceful string is temporarily defined as a string without single-quote, double-quote, slash (/), backslash (\\), angle brackets (< >), and curly brackets ({ }). |
|
export const REP_PEACEFUL_STRING = /^[^'"/\\><}{]*$/; |
|
|
|
export const REP_UUID = new RegExp(`^${P_UUID}$`, 'i'); |
|
|
|
// Try to only match password, not password script |
|
export const REP_LABEL_PASSW = /(?=.*passw)(?!.*script).*/i;
|
|
|