A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© liu0o0y 中级黑马   /  2014-4-29 17:12  /  1503 人查看  /  9 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 黑马-吕老师 于 2014-5-9 19:12 编辑

在C#中,如何在字符串中去掉重复字符,例如“dabad"去掉重复字符产生新的字符串"dab"

9 个回复

倒序浏览
本帖最后由 许庭洲 于 2014-4-29 21:02 编辑

using System;
using System.Collections.Generic;
using System.Text;

namespace 字符串处理
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("请输入字符串:");
            string str=Console.ReadLine();

            for (int i = 1; i < str.Length; i++)
            {
                if (str[i - 1] == str[i ])              
                {
                    str=str.Remove(i,1);
                }
            }
            Console.WriteLine("{0}", str);
            Console.Read();
        }
    }
回复 使用道具 举报

RE: C#字符串中去掉重复字符

许庭洲 发表于 2014-4-29 18:27
using System;
using System.Collections.Generic;
using System.Text;

if里面的条件都不正确
回复 使用道具 举报
本人亲测有效,希望对你有用吧
  1.             string str = "dabad";
  2.             //使用两层循环,将所有字符进行两两比较,出现重复则删除
  3.             for (int i = 0; i < str.Length; i++)
  4.             {
  5.                 for (int j = i + 1; j < str.Length; j++)
  6.                 {
  7.                     if (str.Substring(i, 1) == str.Substring(j, 1))
  8.                     {
  9.                         str = str.Remove(j, 1);
  10.                     }
  11.                 }
  12.             }

  13.             Console.WriteLine(str);
复制代码

评分

参与人数 1技术分 +1 收起 理由
张旭辉 + 1

查看全部评分

回复 使用道具 举报
使用Remove方法、
回复 使用道具 举报
用一个for加一个list或者字典
List<char> lists = new List<char>();
for(int i=0; i<strs.length; i++)
{
        if(!lists.Continus(strs[i]))        //先判断lists中是否包含当前字符,如果不包含就添加到lists中去
        {
                lists.Add(strs[i]);
        }
}
strs = string.Join("",lists);                //将集合中的内容链接成一个字符串,赋值给源字符串

//我用记事本弄的,有的地方可能写错了,但大概意思你应该明白
回复 使用道具 举报
感谢大家的回复,我去试试!
回复 使用道具 举报
阿斌 中级黑马 2014-4-30 12:36:19
8#

版主,我已经回答了问题,请问能不能给我加个技术分?
回复 使用道具 举报
涨姿势!
回复 使用道具 举报
阿斌 发表于 2014-4-29 21:43
本人亲测有效,希望对你有用吧

  不错.....
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马