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.
我需要做一些数据过滤,我有一个问题。如何检查文本的格式是否如下:
文本-1/1
. TEXT - 一些大写字母的文本,1 - 任何正整数。因此,例如,“FA-5/9”将有效,但“FA-AV”将无效。
感谢您的回答。:)
这将符合您的要求:
[A-Z]+-\d\/\d
解释:
[A-Z]+# 将匹配一个或多个 AZ 字符(链接)
[A-Z]+
- # 将匹配破折号 (-)
-
\d\/\d# 将匹配数字斜线数字(1/1)
\d\/\d