Regular Expressions 101

Community Patterns

Guid (with or without dashes)

2

Regular Expression
ECMAScript (JavaScript)

/
^(?<first>[a-fA-F\d]{8})-?(?<second>[a-fA-F\d]{4})-?(?<third>[a-fA-F\d]{4})-?(?<fourth>[a-fA-F\d]{4})-?(?<fifth>[a-fA-F\d]{12})$
/
gm

Description

Matches a guid string that can optionally include dashes.

Submitted by anonymous - 3 years ago