c#窗体中,获得textbox中的数,添加到数组中

2025-01-01 02:19:41
推荐回答(1个)
回答1:

textBox1.Text = "1 2 3 4 5";//textbox1显示的字符串,带空格

string str = textBox1.Text;
string[] s = str.Split(new char[] { ' ' });//把字符串str里的空格去除,返回一个数组。
//这个数组的元素就是1,2,3,4,5 了