Hi
In C# I need to check if a variable of type string consists of either number, comma, space or minus sign "-"
For example
The following strings are valid
67342-23 432
22-333,333
5646456
Whereas the following strings are not valid
7823A,434
abc23844
How to do such check
thanks
Go to the complete details ...