再来求助,还是关于textbox读取~~~~~
textbox中输入“3330 2221 4440”,怎么把他读取出来是“3330”“2221”“4440”,读取要写在textchange事件中
------解决方案--------------------var values = TextBox1.Text.Split(' ')
------解决方案--------------------string[] values = textBox1.Text.Split(' ')
------解决方案--------------------C# code
string test_str = "3330 2221 4440";
string[] result = Regex.Split(test_str,@"\s+");
/*
* [0] "3330" string
[1] "2221" string
[2] "4440" string
*/
------解决方案--------------------
C# code
string[] result= TextBox1.Text.Split(' ');