You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use something like [abc]+ to match values like a, b, c, aa, ab, ac, aabbcc, etc. to match a semantic versioning compatible string. I think such a match could be achieved with [0-9]+.[0-9]+.[0-9]+ (although it does not match the official regex exactly)
The text was updated successfully, but these errors were encountered:
I would like to use something like
[abc]+
to match values likea
,b
,c
,aa
,ab
,ac
,aabbcc
, etc. to match a semantic versioning compatible string. I think such a match could be achieved with[0-9]+.[0-9]+.[0-9]+
(although it does not match the official regex exactly)The text was updated successfully, but these errors were encountered: