I need to get the words from the end of a string. For example:
string1 = "Hello : World";
string2 = "Hello : dear";
string3 = "We will meet : Animesh";
I want output for
string1 = "World"
string2 = "dear"
string3 = "Animesh"
I want the word after the :.
string.Split?