小编典典

如何使用字符串定界符分割字符串?[重复]

c#

我有这个字符串:

My name is Marco and I'm from Italy

我想用delimiter拆分它is Marco and,所以我应该得到一个数组

  • My name 在[0]和
  • I'm from Italy 在[1]。

我该如何使用C#?

我尝试了:

.Split("is Marco and")

但它只需要一个字符。


阅读 298

收藏
2020-05-19

共1个答案

小编典典

string[] tokens = str.Split(new[] { “is Marco and” }, StringSplitOptions.None);

如果您有一个字符定界符(例如例如,),则可以将其减少为(请注意单引号):

string[] tokens = str.Split(',');
2020-05-19