You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are problems with regexes in Address and User table:
Address Country - regex only allows countries that consist of two words, starting with capital letter. It does not allow countries such as Bosnia and Herzegovina or United States of America because of more than two words and words starting with lowercase letters such as and or of.
Address Street - regex doesn't allow letters at the end of the street, for example Street 123/5A is not valid bacause of A.
User Username - regex allows usernames only with letters and numbers, characters such as - or _ are not valid.
User Surname - regex doesn't allow surnames that have more than 2 words.
What is the expected behaviour?
Regex for Address table:
Country - regex will allow countries with more than two words and words such as and or of that starts with lowercase letter.
Street - regex will allow streets with character at the end of the street name, next to digits.
Regex for User table:
Username - regex will allow usernames with characters such as - or _.
Surname - regex will allow surnames logner than 2 words.
The text was updated successfully, but these errors were encountered:
What is the current behaviour?
There are problems with regexes in Address and User table:
Address Country - regex only allows countries that consist of two words, starting with capital letter. It does not allow countries such as Bosnia and Herzegovina or United States of America because of more than two words and words starting with lowercase letters such as and or of.
Address Street - regex doesn't allow letters at the end of the street, for example Street 123/5A is not valid bacause of A.
User Username - regex allows usernames only with letters and numbers, characters such as - or _ are not valid.
User Surname - regex doesn't allow surnames that have more than 2 words.
What is the expected behaviour?
Regex for Address table:
Regex for User table:
The text was updated successfully, but these errors were encountered: