Community Patterns

Community Library Entry

0

Regular Expression
Created·2023-03-08 17:17
Flavor·PCRE2 (PHP)

/
(?<Major>[a-zA-Z0-9]+)(?:\.([a-zA-Z0-9]+))+(?<Label>(?:(?:\-|\+)?\w+)+)?
/
gm
Open regex in editor

Description

Matches on version syntax, grouping the Major version alone, Minor-Patch, and Label alone.

Submitted by Jon Stinnett