0
你好,我是想用字符串的分割方法來分割字符串刪除「從字符串分隔符
string toSplit = "hello how 'are u"
string[] arr = toSplit.Split('''); // that code doesnt compile
for (int i=0 ; i < arr.Length ; i++)
Console.write("arr[i]="+ arr[i]);
我的輸出是:
arr[0] = hello
arr[1]=how, // i get this output by removing the split ofc , it doesnt compile
arr[2]='are
and arr[3]=u
,我想要的是消除這種」來自arr的分隔符[2]
在此先感謝您的幫助。
如果您想通過空間分割,並刪除單引號與雙引號,然後toSplitWithoutQuotes = toSplit.Replace(「'」的String.Empty);和string [] arr = toSplitWithoutQuotes.Split(''.ToCharArray()); – Nair