永发信息网

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

答案:5  悬赏:60  手机版
解决时间 2021-12-01 10:21
  • 提问者网友:蔚蓝的太阳
  • 2021-12-01 00:24
C# 将一个字符串拆分到两个TextBox中
最佳答案
  • 五星知识达人网友:我住北渡口
  • 2021-12-01 00:49
string str = "A11111"
string strLeft = "冀"+str.Left(1);
string strRigth = str.Rigth(5);
combox.Text = strLeft;
textbox.Text = strRight;
全部回答
  • 1楼网友:鸠书
  • 2021-12-01 02:07
string str="A
  • 2楼网友:迟山
  • 2021-12-01 01:57
winForm的没有做过,webForm大致是先拆分字符串,然后分类动态添加就可以了。
  • 3楼网友:独钓一江月
  • 2021-12-01 01:23
public List Method(ref List temp)
{
List firstList=new List(){};
List lastList=new List(){};
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;
}
  • 4楼网友:酒醒三更
  • 2021-12-01 01:13
string str = "冀Asplit
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯