I have a string like this:
Correct Strings
Dim value As String = "45, 2111,56, 1, 9, 99, 62,"
Invalid Strings:
Dim value As String = "10.01, 12,, . , , "
I need to evaluate this string that has this format indefinitely,
The regex evaluate the commas who are in series and are only integers.
This one should work:
It allows a list of comma-separated numbers, with possibly a space between the comma and the next number. An empty list (an empty string) is allowed as well.