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.
我有一套总体上变化很大的集合,但我设法找到了一些相似之处。数据可能完全不同,但它们确实具有相同的结束类。我想知道是否可以相互使用多个正则表达式(将它们与 | 一起使用)。
像这样的东西:
"^([A-Z0-9]+|[d-k0-5]+|[xyz7-9]+)\\s+(Flag1|FLAG1)$";
这将是一个有效的设计,并且会奏效吗?还是我必须制作多个正则表达式字符串并每次都运行它们?
谢谢
这样做并没有错。这将匹配以下字符串:
TEST009 Flag1 def345 FLAG1 zxy789 Flag1
没有任何问题。