Resolved! Regular expression in client script to check value between 0 and 100
Hi,Need to write a regular expression that allows only numbers between 0 and 100 (including decimals). Used !pattern1=/^[0-9.]*$/ && !pattern2=/^(?:100(?:\.0+)?|[0-9]?[0-9](?:\.[0-9]+)?)$/ but it's not working perfectly.Any suggestions/solution.
