I do not really mastered this, but i want to validation checks form HTML attribute, that is "pattern", this example my own:
<input type='text' pattern='[-+]?[0-9]*[.,]?[0-9]+' />
This validates only one number. How can I validate a comma-separated list of numbers?
11,22,33,44,1,or1,,,,3valid?