c#中的split问题
c#中有一个字串strA= "aaa?dff?dfffd?dddddfdf?ddd "
通过问号分隔开的,现在我想通过split将通过问号分隔开的字符复值到一个数组中,请问怎么做?谢谢!
------解决方案--------------------strA= "aaa?dff?dfffd?dddddfdf?ddd ";
string[] test = strA.Split(new char[]{ '? '});
------解决方案--------------------string[] sarray=strA.split( '? ');
------解决方案--------------------strA= "aaa?dff?dfffd?dddddfdf?ddd ";
string[] test = strA.Split(new char[]{ '? '});
for(int i=0;i <test.Length;i++)
{
//TODO
}