Can anyone help me for validation of numbers like:
1,478.25
Special characters like .
And ,
are only allowed
(@#$_&-+()/"':;!?~`|•√π÷×¶={} not allowed )*.
This is the regex I have tried so far:
/^[0-9]+([,][0-9]+)?$/
Your help will be appreciated. Valid number are 123.45 1,234.5 and 0.01