I am going to use javascript to validate a string that needs to be:only digits and commascan't end or start with a commaeach number between the commas has to less than 1,000no negativesno periods, just digits and commas
I tried \d{1,3}(,{1,3})*but it doesn't quite do what I mentioned above