How can i get all the text after every occurrence of a string for example, I have to following text:
commonstring
text and more text and more
random text that may or may
not be on multiple lines
commonstring
more random text that
will be after the common string
How can I make that into an array of
{ "text and more text and more random text that may or may not be on multiple lines", "more random text that will be after the common string" }
Use this
String.Splitoverload: