Hi,
I have a string of following format:
string arr = "a-b-c";
which is not constant which can be
"a-b-c-d";
I want the output as :
string result = "b-c"
or
"b-c-d-....";
I am using string.split("-") but not sure how to skip first element.