当我看到时,我想分割列表中的数据;在C#中

时间:2016-04-19 19:30:40

标签: c# c#-4.0 c#-3.0

enter image description here

我需要在框中拆分这些数据,并在看到“;”时将其添加到新行

var retryParamInfo = new ExParamsContent 
{ 
    Idenitifier = tempIdentifier.SerialNumber, 
    Name = String.Format( "Retry Information Console {0}",i), 
    Value = MyTestRunGlobals.FixtureComponents[i].Uuts[0].RetryList, 
    //Value = thisUut.RetryList.Replace("\n", "\n" + Environment.NewLine), 
}; 
uutTempInfo.ExParams.Add(retryParamInfo);

1 个答案:

答案 0 :(得分:1)

要在某些字符出现时拆分字符串,您可以使用:

myString.split(';');

并将其结果放在数组中。