Skip to content

Commit

Permalink
Merge pull request #1678 from cnotin/patch-3
Browse files Browse the repository at this point in the history
Add UUID regex to 'Regular expression' operation
  • Loading branch information
a3957273 authored Feb 3, 2024
2 parents 44b5667 + 06c912b commit c6da0c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core/operations/RegularExpression.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ class RegularExpression extends Operation {
name: "Strings",
value: "[A-Za-z\\d/\\-:.,_$%\\x27\"()<>= !\\[\\]{}@]{4,}"
},
{
name: "UUID (any version)",
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}"
},
],
"target": 1
},
Expand Down

0 comments on commit c6da0c6

Please sign in to comment.