最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
替换以分割的相同字符串
时间:2022-07-02 11:08:46 编辑:袖梨 来源:一聚教程网
private string noSameStr(string str)
{
str = "|"+str;
string[] strs = str.Split('|');
for(int i=0;i {
if(strs[i].Trim() != "")
{
if(str.Replace("|"+strs[i].Trim()+"|","").Length != str.Length-strs[i].Length)
{
str = str.Replace("|"+strs[i].Trim()+"|","|") + "|"+ strs[i].Trim() + "|";
}
}
}
string nosame = "|";
strs = str.Split('|');
for(int i=0;i {
if(strs[i].Trim() != "")
{
nosame += strs[i].Trim() +"|";
}
}
return nosame;
}
{
str = "|"+str;
string[] strs = str.Split('|');
for(int i=0;i
if(strs[i].Trim() != "")
{
if(str.Replace("|"+strs[i].Trim()+"|","").Length != str.Length-strs[i].Length)
{
str = str.Replace("|"+strs[i].Trim()+"|","|") + "|"+ strs[i].Trim() + "|";
}
}
}
string nosame = "|";
strs = str.Split('|');
for(int i=0;i
if(strs[i].Trim() != "")
{
nosame += strs[i].Trim() +"|";
}
}
return nosame;
}
相关文章
- 英勇之地意志之塔55层打法分享 06-27
- 聊天群的日常生活冰蝶队阵容推荐 06-27
- 暴吵萌厨经营模式玩法步骤说明 06-27
- 数字货币国内交易平台 06-27
- 三国志幻想大陆2枭之歌张辽点杀队阵容搭配 06-27
- 聊天群的日常生活灼烧队阵容推荐 06-27