我有这个字符串:
My name is Marco and I'm from Italy
我想用delimiter拆分它is Marco and,所以我应该得到一个数组
is Marco and
My name
I'm from Italy
我该如何使用C#?
我尝试了:
.Split("is Marco and")
但它只需要一个字符。
string[] tokens = str.Split(new[] { “is Marco and” }, StringSplitOptions.None);
如果您有一个字符定界符(例如例如,),则可以将其减少为(请注意单引号):
,
string[] tokens = str.Split(',');