我需要将用户输入字符串中的字符a
,e
,i
,o
,u
转换为分配的符号。这是我到目前为止的内容。
学校作业
首先提示用户输入加密的文本字符串。确认这不是空白。将此文本字符串发送到您将创建的自定义方法中,该方法将对其进行解密。解密后,将此文本字符串返回到主字符串,在该字符串中将同时输出加密和解密的字符串。
要解密文本字符串,必须执行以下字符替换:
@
= a
#
= e
^
= i
*
= o
+
= u
我当前的代码
public static string Decipher (string code)
{
char[] array = code.ToCharArray();
for (int i = 0; i < code.Length; i++)
{
if (code.Contains("@") && code.Contains("#") && code.Contains("^") &&
code.Contains("*") && code.Contains("+"))
{
}
}
答案 0 :(得分:2)
每次通过此for循环时,如果字符串包含@
,#
,^
,*
和 +
在字符串中的任何位置。因此,如果您的字符串缺少这些符号中的任何一个,则您的if
语句将评估为false
并且什么都不会发生。
幸运的是,您可以轻松简化此操作。执行此操作的一种方法是将string
转换为char[]
数组,并将逻辑分解为多个if
-else
语句或单个switch
语句,例如:
public static string Decipher (string code)
{
char[] codeArray = code.ToCharArray(); // convert your code string to a char[] array
for (int i = 0; i < codeArray.Length; i++)
{
switch (codeArray[i]) // Get the char at position i in the array
{
case '@': // if the character at i is '@'
codeArray[i] = 'a'; // Change the character at i to 'a'
break; // break out of the switch statement - we don't need to evaluate anything else
case '#': // if the character at i is '#'
codeArray[i] = 'e'; // Change the character at i to 'e'
break; // break out of the switch statement - we don't need to evaluate anything else
// repeat for everything else you need to replace!
}
}
return new String(codeArray); // Once you're all done, create a string from your deciphered array and return it
}
答案 1 :(得分:1)
有很多不同的方法。通常不赞成在循环中进行字符串连接(如@Acex所示)。它会分解出很多“垃圾”,并会减慢速度。 Stringbuilder
类通常是一个更好的选择。我的代码使用Stringbuilders(嗯,一遍又一遍,我一遍又一遍地清除了。)
以下是做同一件事的几种方法:
const string encoded = "H#ll*, H*w @r# y*+?";
//good old fashioned C-style/brute force:
var buf = new StringBuilder();
foreach (var c in encoded){
switch(c){
case '@':
buf.Append('a');
break;
case '#':
buf.Append('e');
break;
case '^':
buf.Append('i');
break;
case '*':
buf.Append('o');
break;
case '+':
buf.Append('u');
break;
default:
buf.Append(c);
break;
}
}
var result = buf.ToString();
//using a lookup table (easily extensible)
buf.Clear();
var decodeDict = new Dictionary<char, char>{
{'@', 'a'},
{'#', 'e'},
{'^', 'i'},
{'*', 'o'},
{'+', 'u'},
};
foreach (var c in encoded){
if (decodeDict.Keys.Contains(c)){
buf.Append(decodeDict[c]);
} else {
buf.Append(c);
}
}
result = buf.ToString();
//something completely different
//instead of iterating through the string, iterate through the decoding dictionary
buf.Clear();
var working = new StringBuilder(encoded.Length);
working.Append(encoded);
foreach (var pair in decodeDict){
working.Replace(pair.Key, pair.Value);
}
result = working.ToString();
在每种情况下,result
都会保留结果。在每个结果分配之后立即放置一个断点,看看发生了什么。
我没有提供很多注释,请逐步浏览代码,查找类并弄清楚我在做什么(毕竟,您是学生)。
答案 2 :(得分:0)
这真的很简单:
public static string Decipher(string code)
{
var map = new Dictionary<char, char>()
{
{ '@', 'a' },
{ '#', 'e' },
{ '^', 'i' },
{ '*', 'o' },
{ '+', 'u' },
};
char[] array = code.ToCharArray();
array = array.Select(x => map.ContainsKey(x) ? map[x] : x).ToArray();
return new string(array);
}
现在您可以执行以下操作:
string cipher = "*+tp+t";
string plain = Decipher(cipher);
Console.WriteLine(cipher);
Console.WriteLine(plain);
这将输出:
*+tp+t output
答案 3 :(得分:0)
为了替代
并且将允许您使用现有方法。
您可以这样写:
private Dictionary<char, char> mapping = new Dictionary<char, char>()
{
{ '@', 'a' },
{ '#', 'e' },
{ '^', 'i' },
{ '*', 'o' },
{ '+', 'u' },
};
private string Decrypt(string encryptedString) =>
string.Concat(encryptedString.Select(s => mapping.ContainsKey(s) ? mapping[s] : s));
和用法:
string result = Decrypt(encryptedString);
参考文献: DotNetFiddle Example