0
0
mirror of https://github.com/semver/semver.git synced 2025-08-22 13:58:33 +00:00

Update regex support wording

This commit is contained in:
Kyle 2023-06-23 01:28:09 +08:00
parent 38a25311c9
commit 64dbec0fc7
No known key found for this signature in database
GPG Key ID: 7056354A082F5CC2

View File

@ -338,7 +338,7 @@ name and the semantic version is "1.2.3".
There are two. One with named groups for those systems that support them There are two. One with named groups for those systems that support them
(PCRE [Perl Compatible Regular Expressions, i.e. Perl, PHP and R], Python (PCRE [Perl Compatible Regular Expressions, i.e. Perl, PHP and R], Python
and Go). Go, Swift, etc.).
See: <https://regex101.com/r/Ly7O1x/3/> See: <https://regex101.com/r/Ly7O1x/3/>
@ -349,7 +349,7 @@ See: <https://regex101.com/r/Ly7O1x/3/>
And one with numbered capture groups instead (so cg1 = major, cg2 = minor, And one with numbered capture groups instead (so cg1 = major, cg2 = minor,
cg3 = patch, cg4 = prerelease and cg5 = buildmetadata) that is compatible cg3 = patch, cg4 = prerelease and cg5 = buildmetadata) that is compatible
with ECMA Script (JavaScript), PCRE (Perl Compatible Regular Expressions, with ECMA Script (JavaScript), PCRE (Perl Compatible Regular Expressions,
i.e. Perl, PHP and R), Python and Go. i.e. Perl, PHP and R), Python, Go, Swift, etc.
See: <https://regex101.com/r/vkijKf/1/> See: <https://regex101.com/r/vkijKf/1/>