首页 > Windows开发 > 详细

截取字符串、拼接字符串【c#】

时间:2021-09-07 00:23:42      阅读:26      评论:0      收藏:0      [点我收藏+]

string compname="1与3";
String[] name = compname.Split(‘与‘);
string namer=name[0];

namer=1

DataTable dtLabelList;
if (btnAllLabel.Text == "显示全部标签")
dtLabelList = cc.GetDataInfo("", 10);
else
dtLabelList = cc.GetDataInfo("", 100000);//获取数据库表的封装里的信息

string lable = "";
for (int i = 0; i < dtLabelList.Rows.Count; i++)
{
lable += Convert.ToString(dtLabelList.Rows[i].ItemArray[dtLabelList.Columns.IndexOf("LabelName")]) + " ";//获取每个标签信息。

}

string lable1 = "";
String[] strs = lable.Split(‘|‘);//截取
for (int i = 0; i < strs.Length; i++)
{
if (lable1.IndexOf(strs[i].ToString()) <= -1)
{
lable1 += strs[i].ToString() + " | ";//拼接
}
}

LabelList.Text = lable1;

截取字符串、拼接字符串【c#】

原文:https://www.cnblogs.com/liuguiqing/p/15233478.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!