How to allow number range in regex
There is a field call Destination port which is a single line text field and a OnChange client script is written to allow number or number range (i.e 1119 or 1100-2000)How to write regex for this??var regEx = /^\d+$/; if (!regEx.test(destinati...
