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)
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)