Skip to content

Commit c6da0c6

Browse files
authored
Merge pull request #1678 from cnotin/patch-3
Add UUID regex to 'Regular expression' operation
2 parents 44b5667 + 06c912b commit c6da0c6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/core/operations/RegularExpression.mjs

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ class RegularExpression extends Operation {
8383
name: "Strings",
8484
value: "[A-Za-z\\d/\\-:.,_$%\\x27\"()<>= !\\[\\]{}@]{4,}"
8585
},
86+
{
87+
name: "UUID (any version)",
88+
value: "[0-9a-fA-F]{8}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{4}\\b-[0-9a-fA-F]{12}"
89+
},
8690
],
8791
"target": 1
8892
},

0 commit comments

Comments
 (0)