我有这个字符串:
My name is Marco and I'm from Italy
Run Code Online (Sandbox Code Playgroud)
我想用分隔符拆分它is Marco and,所以我应该得到一个数组
My name 在[0]和 I'm from Italy 在[1].我怎么能用C#做到这一点?
试过
.Split("is Marco and")
Run Code Online (Sandbox Code Playgroud)
但它只想要一个字符.