2022-12-14 00:23:59 -05:00
|
|
|
export const emailRegEx = /^\S+@\S+\.\S+$/;
|
|
|
|
export const phoneRegEx = /^\d+$/;
|
|
|
|
export const usernameRegEx = /^[A-Z_a-z]\w*$/;
|
2023-03-06 21:55:29 -05:00
|
|
|
export const passwordRegEx = /^[\w!"#$%&'()*+,./:;<=>?@[\]^`{|}~-]{8,}$/;
|
2022-12-14 00:23:59 -05:00
|
|
|
export const webRedirectUriProtocolRegEx = /^https?:$/;
|
|
|
|
export const mobileUriSchemeProtocolRegEx = /^[a-z][\d_a-z]*(\.[\d_a-z]+)+:$/;
|
|
|
|
export const hexColorRegEx = /^#[\da-f]{3}([\da-f]{3})?$/i;
|
|
|
|
export const dateRegex = /^\d{4}(-\d{2}){2}/;
|
2023-01-12 23:37:33 -05:00
|
|
|
export const noSpaceRegEx = /^\S+$/;
|