如何只允许数字输入到我的C#控制台应用程序?(How do I only allow number

2019-06-18 16:21发布

Console.WriteLine("Enter the cost of the item");                           
string input = Console.ReadLine();
double price = Convert.ToDouble(input);

您好,我想键盘按钮,AZ,括号,问号等被禁用。 我想它,所以如果你键入它,它不会在控制台中显示出来。 我只想数字1-9露面。 这是C#控制台应用程序。 谢谢您的帮助!

Answer 1:

试试这个代码段

string _val = "";
Console.Write("Enter your value: ");
ConsoleKeyInfo key;

do
{
    key = Console.ReadKey(true);
    if (key.Key != ConsoleKey.Backspace)
    {
        double val = 0;
        bool _x = double.TryParse(key.KeyChar.ToString(), out val);
        if (_x)
        {
            _val += key.KeyChar;
            Console.Write(key.KeyChar);
        }
    }
    else
    {
        if (key.Key == ConsoleKey.Backspace && _val.Length > 0)
        {
            _val = _val.Substring(0, (_val.Length - 1));
            Console.Write("\b \b");
        }
    }
}
// Stops Receving Keys Once Enter is Pressed
while (key.Key != ConsoleKey.Enter);

Console.WriteLine();
Console.WriteLine("The Value You entered is : " + _val);
Console.ReadKey();


Answer 2:

这MSDN文章介绍了如何在一个控制台窗口一次读取的人物之一。 测试每个字符,因为它是与输入Char.IsNumber()方法,并拒绝那些测试失败字符。



Answer 3:

这是一种方法。 这也可能是矫枉过正,如果你只是在C#中起步的,因为它使用的语言的一些更高级的方面。 在任何情况下,我希望你觉得它有趣。

它有一些不错的功能:

  • ReadKeys方法需要用于测试字符串是否迄今为止是有效的任意函数。 这使得它易于重用,只要你想从键盘滤波输入(例如字母或数字,但没有标点符号)。

  • 它应该处理任何你扔它可以被解释为一个double,如“-123.4E77”。

然而,与吴宇森的回答它不处理退格。

下面是代码:

using System;

public static class ConsoleExtensions
{
    public static void Main()
    {
        string entry = ConsoleExtensions.ReadKeys(
            s => { StringToDouble(s) /* might throw */; return true; });

        double result = StringToDouble(entry);

        Console.WriteLine();
        Console.WriteLine("Result was {0}", result);
    }

    public static double StringToDouble(string s)
    {
        try
        {
            return double.Parse(s);
        }
        catch (FormatException)
        {
            // handle trailing E and +/- signs
            return double.Parse(s + '0');
        }
        // anything else will be thrown as an exception
    }

    public static string ReadKeys(Predicate<string> check)
    {
        string valid = string.Empty;

        while (true)
        {
            ConsoleKeyInfo key = Console.ReadKey(true);
            if (key.Key == ConsoleKey.Enter)
            {
                return valid;
            }

            bool isValid = false;
            char keyChar = key.KeyChar;
            string candidate = valid + keyChar;
            try
            {
                isValid = check(candidate);
            }
            catch (Exception)
            {
                // if this raises any sort of exception then the key wasn't valid
                // one of the rare cases when catching Exception is reasonable
                // (since we really don't care what type it was)
            }

            if (isValid)
            {
                Console.Write(keyChar);
                valid = candidate;
            }        
        }    
    }
}

你也可以实现一个IsStringOrDouble函数返回false ,而不是抛出一个异常,但我将它作为一个练习。

这可以扩展的另一种方式将是ReadKeys取两Predicate<string>参数:一个确定的子是否代表一个有效的条目的开始和一个第二透露是否已经完成。 这样,我们可以让按键贡献,但不允许回车键,直到进入完成。 要保证一定的强度,或“是” /“无”条目这将是东西像密码输入有用。



Answer 4:

此代码将允许您:

  • 只写一个点(因为数字只能有一个小数点分隔符);
  • 在开始时一个减;
  • 一个零在开始时。

这意味着你不能写类似:“00000.5”或“0000 ...- 5”。

class Program
{
    static string backValue = "";
    static double value;
    static ConsoleKeyInfo inputKey;

    static void Main(string[] args)
    {
        Console.Title = "";
        Console.Write("Enter your value: ");

        do
        {
            inputKey = Console.ReadKey(true);

            if (char.IsDigit(inputKey.KeyChar))
            {
                if (inputKey.KeyChar == '0')
                {
                    if (!backValue.StartsWith("0") || backValue.Contains('.'))
                        Write();
                }

                else
                    Write();
            }

            if (inputKey.KeyChar == '-' && backValue.Length == 0 ||
                inputKey.KeyChar == '.' && !backValue.Contains(inputKey.KeyChar) &&
                backValue.Length > 0)
                Write();

            if (inputKey.Key == ConsoleKey.Backspace && backValue.Length > 0)
            {
                backValue = backValue.Substring(0, backValue.Length - 1);
                Console.Write("\b \b");
            }
        } while (inputKey.Key != ConsoleKey.Enter); //Loop until Enter key not pressed

        if (double.TryParse(backValue, out value))
            Console.Write("\n{0}^2 = {1}", value, Math.Pow(value, 2));

        Console.ReadKey();
    }

    static void Write()
    {
        backValue += inputKey.KeyChar;
        Console.Write(inputKey.KeyChar);
    }
}


Answer 5:

        string input;
        double price;
        bool result = false;

        while ( result == false )
            {
            Console.Write ("\n Enter the cost of the item : ");
            input = Console.ReadLine ();
            result = double.TryParse (input, out price);
            if ( result == false )
                {
                Console.Write ("\n Please Enter Numbers Only.");
                }
            else
                {
                Console.Write ("\n cost of the item : {0} \n ", price);
                break;
                }
            }


文章来源: How do I only allow number input into my C# Console Application?