定义一个STRING 数组.
STRING []STRTEMP ;
将TEXTBOX按' '空格折分为多个STRING.
STRTEMP = 你的TEXTBOX.text.split(' ');
第一个就是STRTEMP[0]
第二个就是STRTEMP[1]
以此类推
给分吧
string sStr = "";
string sC = "";
stirng sAB = "";
sStr = this.txtGetString.Text; //假设输入框ID为txtGetString,输入内容为:aaa bbb ccc
if (sStr.IndexOf(' ') > 0)
{
sC = sStr.Substring(sStr.LastIndexOf(" ")); //结果:ccc
sAB = sStr.Substring(0, sStr.LastIndexOf(" ")); //结果:aaa bbb
}
else
{
sC = this.TextBox1.Text;
}