c#截取textbox中第二个空格后面的字符串

2025-01-03 03:01:38
推荐回答(2个)
回答1:

定义一个STRING 数组.
STRING []STRTEMP ;
将TEXTBOX按' '空格折分为多个STRING.
STRTEMP = 你的TEXTBOX.text.split(' ');
第一个就是STRTEMP[0]
第二个就是STRTEMP[1]
以此类推
给分吧

回答2:

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;
}