我有一个组名列表,其中所有组名都包含prod或nonprod。我想从每一行的组名中提取出prod或nonprod。有正则表达式可以做到这一点吗?组名称示例:
我只想提取prod/nonprod。
ozxc1zmp1#
((?:non)?prod) ( = Start of capture group (?:non) = None capturing group for the literal string "non" ? = Zero or one of "non" prod = The literal string "prod" ) = End of capture group
在https://regex101.com/上试用
1条答案
按热度按时间ozxc1zmp1#
在https://regex101.com/上试用