hi i would like some help to validate a pattern before releases the regex is correct but not entirely what im looking for
this is the regex I want however, im looking for it be exact, meaning it has start always with 8 and end with 12. as \w means any digit
Regex: \w{8}-\w{4}-\w{4}-\w{4}-\w{12}
so I can validate the pattern below with it exactly:
ddd30904-6845-4ca6-84d6-9c9a75756e76
66211f6b-e2f5-926a-4f45-b7aaff8262a9
7f14135e-c257-44cd-b76c-28e7c4aa90d0
400382fa-f551-41a6-b2e2-ab4d719fdf57
what would the new regex be?

