I do have the following code
Regex rx = new Regex(@"(\w{2}(\,\w{2})*)+");
I don't know how to check if the entire input string falls into that format or not for example
INPUT: W2 -> true
INPUT x3,4e -> true
INPUT x3,4e,33 -> true
INPUT: x -> false
INPUT x3,e -> false
I do not need to find any matches! I just need to know if the input is in the correct format or not.
Thanks