I am trying to extract a part of the string starting from the character '-' . The String looks likes this Aaron,A-5767 I need to get just the 5767, that is extracting part of the string starting from the special character.
I understanding using the below substring function that selects from start of the string to any spl character
sub = str.Substring(0, index)
But how do start from spl the spl character