I have this string:
"My name is Marco and I'm from Italy"
I'd like to split it, with the delimiter being is Marco and
, so I should get an array with
My name
at [0] andI'm from Italy
at [1].
How can I do it with C#?
I tried with:
.Split("is Marco and")
But it wants only a single char.