I have the following:
string test = \"9586-202-10072\"
How would I get all characters to the right of the final - so 10072. Th
-
string tail = test.Substring(test.LastIndexOf('-') + 1);