Hello,
i'm using JSU for Regular expression and i need to have a match with a number field with an exemple like:
12.1234 ( MAX for 2 digits before dot and 4 digits after dot )
I'm actually using this Regex: /((^[0-9]{0,2})$|(^[0-9]{0,2}[.][0-9]{0,4}?))$/
This expression is matching with an empty field or 12 or 12.1233 but still not working in JSU .
Can you please help ?
thanks in advance.
Hello,
JSU works as normal Java regex. In your case, you can trying using [0-9]{0,2}\.+[0-9]{0,4} For more information please see https://confluence-apps.beecom.ch/display/JSU/Regular+Expression+Check+Validator
For any kind of support, you can always raise a ticket on https://servicedesk-apps.beecom.ch/servicedesk/customer/portal/3
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.