如何在输入提示期间禁止控制台中的所有非数字输入?

发布于 2024-10-24 08:12:36 字数 123 浏览 0 评论 0原文

这里正在谈论控制台。

这个想法是,如果用户在控制台的输入提示期间按下除数字(字母键上方的键和数字键盘)之外的任何键,则不会输入任何内容。就好像控制台会忽略任何非数字按键。

如何以正确的方式做到这一点?

Talking console here.

The idea is that if user presses any key except numbers(the ones above the letter keys, and numpad) during an input prompt in the console, then nothing will be typed. Its's as if console will ignore any non-numeric key presses.

How would one do it the right way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

薆情海 2024-10-31 08:12:36

尝试 ReadKey 方法:

while (processing input)
{
  ConsoleKeyInfo input_info = Console.ReadKey (true); // true stops echoing
  char input = input_info.KeyChar;

  if (char.IsDigit (input))
  {
     Console.Write (input);
     // and any processing you may want to do with the input
  }
}

Try the ReadKey method:

while (processing input)
{
  ConsoleKeyInfo input_info = Console.ReadKey (true); // true stops echoing
  char input = input_info.KeyChar;

  if (char.IsDigit (input))
  {
     Console.Write (input);
     // and any processing you may want to do with the input
  }
}
毁虫ゝ 2024-10-31 08:12:36
private static void Main(string[] args) {

    bool inputComplete = false;
    System.Text.StringBuilder sb = new System.Text.StringBuilder();
    while (!inputComplete ) {

        System.ConsoleKeyInfo key = System.Console.ReadKey(true);

        if (key.Key == System.ConsoleKey.Enter ) {                
            inputComplete = true;
        }
        else if (char.IsDigit(key.KeyChar)) {
            sb.Append(key.KeyChar);
            System.Console.Write(key.KeyChar.ToString());
        }
    }

    System.Console.WriteLine();
    System.Console.WriteLine(sb.ToString() + " was entered");
}
private static void Main(string[] args) {

    bool inputComplete = false;
    System.Text.StringBuilder sb = new System.Text.StringBuilder();
    while (!inputComplete ) {

        System.ConsoleKeyInfo key = System.Console.ReadKey(true);

        if (key.Key == System.ConsoleKey.Enter ) {                
            inputComplete = true;
        }
        else if (char.IsDigit(key.KeyChar)) {
            sb.Append(key.KeyChar);
            System.Console.Write(key.KeyChar.ToString());
        }
    }

    System.Console.WriteLine();
    System.Console.WriteLine(sb.ToString() + " was entered");
}
梦里的微风 2024-10-31 08:12:36

这个小实验的工作原理如下:

static void Main()
{
    while (true)
    {
        var key = Console.ReadKey(true);
        int i;
        if (int.TryParse(key.KeyChar.ToString(), out i))
        {
            Console.Write(key.KeyChar);
        }
    }
}

This little experiment works like that:

static void Main()
{
    while (true)
    {
        var key = Console.ReadKey(true);
        int i;
        if (int.TryParse(key.KeyChar.ToString(), out i))
        {
            Console.Write(key.KeyChar);
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文