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