Hi
I'm looking for the regular expression to validate a user profile field to have a minimum length of 5 and a maximum length of 100 characters.
I used /.{5,100}/
However, it always gives 'the data entered is not valid', no matter how many characters I type.
What is the correct validation for this?