i have this set of string:
“Name: Bente
ID: 2129
Country: North Korea”
I want to split the string so that i can get “Bente”, “2129”, “North”, and “Korea”.
I’ve just used something like string.Split(" "c) but it’s not separating some of the words separated by a \n.
If i select string(3), i want to get “2129” but i’m getting “North”.