から区切り文字私は、文字列削除する「という文字列
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]);
のsplitメソッドを使用して文字列を分割しようとしていますこんにちは、私の出力は、次のとおりです。
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
と私がしたいことは、これを削除するには」 delimiter from arr [2]
ありがとうございました。コード内
を。と文字列[] arr = toSplitWithoutQuotes.Split( '' .ToCharArray()); – Nair