I am building a multilingual site and have regular expressions set up to make sure users don't go beyond a certain character limit. Vorto is being used with Textboxes and Richtext editors.
An example would be the title should not be more than 25 characters so the regex looks like ".{0,25}". However, when i enter more than 25 characters there is no warning to say the the pattern has not matched.
Regular expression not working
I am building a multilingual site and have regular expressions set up to make sure users don't go beyond a certain character limit. Vorto is being used with Textboxes and Richtext editors.
An example would be the title should not be more than 25 characters so the regex looks like ".{0,25}". However, when i enter more than 25 characters there is no warning to say the the pattern has not matched.
I needed to add $ to the end of the regex
is working on a reply...