如果只是为了显示,没必要转换成数组,直接如下:textbox2.Text=textbox1.Text.replace(" ",",");而要转换成数组,可以使用split函数,string[] nums=textbox1.Text.split(new char[]{' '});