Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个正则表达式来验证已按以下格式输入的数据:22:33。
使用 thjis 正则表达式^\d{2}:\d{2}$
^\d{2}:\d{2}$
由于您没有指定任何特定的正则表达式类型或它可能在输入中出现的位置;这是一个例子[0-9][0-9]:[0-9][0-9]。
[0-9][0-9]:[0-9][0-9]
如果您想将整个输入与恰好在该格式上匹配^[0-9][0-9]:[0-9][0-9]$..等等。
^[0-9][0-9]:[0-9][0-9]$
^\d\d:\d\d$应该做的伎俩。
^\d\d:\d\d$