I have a textbox which should accept input in the following format:
[decimal], [decimal]; [decimal], [decimal]; [decimal], [decimal]
For example:
0.01,0.10; 0.20,0.50; 1.00,3.00; 4.00,1000.00
My knowledge of regular expression is very poor. I was able to do that much
^([0-9]+(\.[0-9]+))?$
But couldn't do much more. So any help will be greatly appreciated. Thanks.