Skip to content
Snippets Groups Projects
Commit dcc0a52a authored by eirikmda's avatar eirikmda
Browse files

added æøå to regex

parent 7b743117
Branches
No related tags found
1 merge request!58Resolve "regex ÆØÅæøå"
......@@ -2,8 +2,8 @@ export const NAME_MAX_LENGTH = 40;
export const NUMBER_MAX_LENGTH = 15;
/******************************************* REGEXES ************************************************/
export const EMAIL_REGEX = "^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$"; // Valid email
export const PASSWORD_REGEX = "^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{2,}$"; // 9 characters, at least one letter and one number
export const EMAIL_REGEX = "^[ÆØÅæøåa-zA-Z0-9_.+-]+@[ÆØÅæøåa-zA-Z0-9-]+\\.[ÆØÅæøåa-zA-Z0-9-.]+$"; // Valid email
export const PASSWORD_REGEX = "^(?=.*[ÆØÅæøåA-Za-z])(?=.*\\d)[ÆØÅæøåA-Za-z\\d]{2,}$"; // 9 characters, at least one letter and one number
export const MEASUREMENT_REGEX = "^(\\d+(?:[\\.\\,]\\d{1,2})?)$"; // Accepts integers and decimal numbers with comma or period. 2 decimal precision!
export const INTEGER_REGEX = "^[0-9]*[1-9][0-9]*$"; //Accepts only integers
export const LEGAL_LOCATION_REGEX = "^[\\w\\-]+$"; //Accepts trings containing legal file characters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment