C# 将一个字符串拆分到两个TextBox中

比如读取到车号冀A11111,要在combox中显示“冀A”,在textbox中显示“11111”代码如何实现,急!... 比如读取到车号冀A11111,要在combox中显示“冀A”,在textbox中显示“11111”
代码如何实现,急!
展开
 我来答
百度网友7035e1888
2011-10-14 · 超过37用户采纳过TA的回答
知道答主
回答量:89
采纳率:0%
帮助的人:97万
展开全部
string str = "冀A11111";
//截取前两位 冀A
string strLeft = str.Substring(0, 2);
//从第3个开始截取后几位 11111
string strRigt = str.Substring(2);
//没有该项目,就往combox追加项目
if (combox.Items.Contains(strLeft) == false)
{
combox.Items.Add(strLeft);
}
combox.Text = strLeft;
textbox.Text = strRigt;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Jalonlovesja
2011-10-14
知道答主
回答量:47
采纳率:0%
帮助的人:17.7万
展开全部
截取字符串了
string str1 = "冀A11111";
string[] str = str1.SubString(0,2);
textbox1.Text = str[1];
combox.Items.Add(str[0]);

这样就可以了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
790576378
2011-10-14
知道答主
回答量:15
采纳率:0%
帮助的人:1.7万
展开全部
public List<string> Method(ref List<string> temp)
{
List<string> firstList=new List<string>(){};
List<string> lastList=new List<string>(){};
if(tem.count>0)
{
foreach(string x in temp)
{
if(x.Length>0)
{
firstList.item.add(x.substring(0,2));
lastList.item.add(x.SubString(2));
}
}
}
temp=lastList;
return firstList;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
meteortent
2011-10-14 · TA获得超过518个赞
知道小有建树答主
回答量:870
采纳率:0%
帮助的人:735万
展开全部
string str = "冀A11111";
string num = string.Empty;
string oth = string.Empty;
foreach (char a in str.ToCharArray())
{
int t;
if (Int32.TryParse(a.ToString(), out t))
num += a.ToString();
else
err += a.ToString();
}
combox.Text = num;
textbox.Text = err;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Trample
2011-10-14 · TA获得超过123个赞
知道小有建树答主
回答量:171
采纳率:0%
帮助的人:126万
展开全部
string str = "A11111"
string strLeft = "冀"+str.Left(1);
string strRigth = str.Rigth(5);
combox.Text = strLeft;
textbox.Text = strRight;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(6)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式