Check out example codes for "get text after word C#". It will help you in understanding the concepts better.
Code Example 1
string myString = "hi there\ IP:127.0.0.1"
string toBeSearched = "IP:";
string ipaddr = myString.Substring(myString.IndexOf(toBeSearched) + toBeSearched.Length);
Learn ReactJs, React Native from akashmittal.com