Hi

I want to split a string into two strings

myString = "hello there are you there test yes I am here"


I need to split the string into two when it finds test

eg I want something like spilitString1 ="hello there are you there"
splitString2 = "yes I am here"

how do I do this spliting in c#?

Thanks