Created
March 4, 2022 06:02
-
-
Save ralphilius/d1be02d5ab13ff1ced6e168c505ed3c7 to your computer and use it in GitHub Desktop.
This regular expression will match app versions following the Semantic Versioning scheme greater than or equal to 3.5.0 - https://regex101.com/r/LZBxhe/1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/([3]\.[5]\.([0-9]$|[1-9]\d{1,}))|([3]\.([6-9]|[1-9]\d{1,})\.\d*)|(([4-9]|[1-9]\d{1,})\.\d*\.\d*)/gm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment