本文介绍了我想以asc顺序在这一行中找到重复的char的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在asc命令中找到(打印)此行中的重复字符,仅使用for循环。
例如
string repeatedWord =我想在asc命令中查找此行中的重复字符;
请注意:NO Linq,没有内置方法。
-Update
我已经完成了查找字符串中的字符例如:
I want to find(Print) the duplicate char in this line in asc order using for loop only.
For eg
string repeatedWord = "I want to find the duplicate char in this line in asc order";
Please note that: NO Linq, No inbuilt method.
-Update
I have done to find out the char in a string For eg:
string word = "I want to find the duplicate char in this line in asc order";
string hold = "";
for (int i=0; i< word.Length; i++)
{
for(int j=i+1; j< word.Length ; j++)
{
if(word[i].ToString() == " ")
{
break;
}
if(word[i] == word[j])
{
hold = hold + word[i];
break;
}
}
}
Console.WriteLine(hold);
现在我需要按asc顺序对它进行排序
Now I need to sort it in a asc order
推荐答案
这篇关于我想以asc顺序在这一行中找到重复的char的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!