c#将字符串拆分为单独的变量

本文关键字:单独 变量 拆分 字符串 | 更新日期: 2023-09-27 18:08:19

当发现逗号时,我试图将字符串拆分为单独的字符串变量。

string[] dates = line.Split(',');
foreach (string comma in dates)
{
     string x = // String on the left of the comma
     string y = // String on the right of the comma
}

我需要能够为逗号两边的字符串创建一个字符串变量。谢谢。

c#将字符串拆分为单独的变量

在本例中去掉ForEach

只是:

string x = dates[0];
string y = dates[1];

直接从数组中获取字符串:

string[] dates = line.Split(',');
string x = dates[0];
string y = dates[1];

如果可以有多个逗号,你应该指定你只需要两个字符串:

string[] dates = line.Split(new char[]{','}, 2);

另一个选择是使用字符串操作:

int index = lines.IndexOf(',');
string x = lines.Substring(0, index);
string y = lines.Substring(index + 1);

你的意思是这样吗?

   string x = dates[0];
   string y = dates[1];