Only get a certain release version #8073
-
Hi, I'm looking to get only the even number release of nginx as these are the ones that are classified as stable. However when using a regex like Is this something that is possible? Thanks again for the great tool! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Did you read the message? 😏 It says you need another regex matching group, try
or with optional patch |
Beta Was this translation helpful? Give feedback.
Did you read the message? 😏 It says you need another regex matching group, try
^release-(?<major>\\d+)\\.(?<minor>\\d*[02468]))$
or with optional patch
^release-(?<major>\\d+)\\.(?<minor>\\d*[02468]))(:?\\.(?<patch>\\d*))?$