-6

我想子字符串“发送”

 send = name +"  "+telNo1 +"  " +address+"  " +telNo2+"  " +telNo3+"  "
        + email+"  " +bday+" " +address+"   " +occupation;

我将发送传递给另一个方法,我需要子字符串发送并获取值以分隔字符串变量。

4

1 回答 1

1

你的意思是split

string[] splitted_word = send.Split(' ');
foreach (string x in splitted_word)
        {
            Console.WriteLine(x);
        }
于 2013-06-22T05:52:42.640 回答