我想检查用户的输入,以确保他们只输入点和破折号,任何其他字母或数字都会返回错误消息。我还想允许用户在转换时输入空格,如何删除或忽略空格?
string permutations;
string entered = "";
do
{
Console.WriteLine("Enter Morse Code: \n");
permutations = Console.ReadLine();
.
.
} while(entered.Length != 0);
谢谢!