regex dont match comma
Solved
General and Desktop
-
Hey,
i have a TableView with InputFields, with this Inputs i make some mathoperations.
My inputs works perfect and the calculations also.
Now i need a regex for integers and floats (DONT allow comma)
For example:- Input: 123.3 --> i match 123.3 (that is perfect for me )
- Input: 123 --> i match 123 (that is perfect for me)
- Input 123,3 --> i match 123 (here i DONT want to match anything)
Following my regex:
(\d*[.]?\d*)
-
-