值范围从 1 - 1440(整数)的正则表达式

Regular expression for value Range from 1 - 1440 (Integer)

值范围 1 - 1440 的正则表达式是什么? (整数)

我想这样就可以了。我正在 运行 测试。我假设您不会像“0999”

这样用零填充数字

"^([1-9]|[1-9][0-9]|[1-9][0-9][0-9]|1[0-3][0- 9][0-9]|14[0-3][0-9]|1440)$"

breakdown:
[1-9]   obvious
[1-9[0-9]  allow 10 to 19
[1-9][0-9][0-9] allow 100 to 199
1[0-3][0-9][0-9] allow 1000 to 1399
14[0-3][0-9] allow 1400 to 1439
1440         obvious

似乎有效:

using System;
using System.Text.RegularExpressions;

public class Program
{
    public static void Main()
    {
        
        for(int i = 0;i < 10000;i++)
        {
            
           if(Regex.IsMatch(i.ToString(),"^([1-9]|[1-9][0-9]|[1-9][0-9][0-9]|1[0-3][0-9][0-9]|14[0-3][0-9]|1440)$"))
           {
               Console.WriteLine(i);
           }
        }
        
    }
}