私は次のような刺傷があります:
string searches = "my test";
そして、次のように個々の用語に分割できます。
string[] split = searches.Split(new Char[] { ' ' });
これは私に与えます:
[0] = "my"
[1] = "test"
次のようにする簡単な方法はありますか?
[0] = "my"
[1] = "test"
[2] = "my:"
[3] = "test:"
[4] = "my,"
[5] = "test,"
検索語を 2 倍にし、2 倍したセットの最後に「:」を追加する必要があります。これを行う最も簡単で効率的な方法は何ですか?