I am trying to use a regular expression validation to check for only decimal values or numeric values. But user enters numeric value, it don\'t be first digit \"0\"
/([0-9]+[.,]*)+/ matches any number with or without coma or dots
/([0-9]+[.,]*)+/
it can match
122 122,354 122.88 112,262,123.7678
bug: it also matches 262.4377,3883 ( but it doesn't matter parctically)