Regular Expressions 101

Community Patterns

Semantic Version Parser/Validator

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^(?<major>\d+).(?<minor>\d+).(?<patch>\d+)(?:-(?<pre_release>(?:[0-9A-Za-z-]\.?)+))?(?:\+(?<build_info>(?:[0-9A-Za-z-]\.?)+))?$
/

Description

A regex expression that extracts the components of a semantic version and fails if the version does not conform to the semantic version spec.

Based on the 2.0.0 spec

Submitted by Vespion - 5 months ago