Skip to content

Commit

Permalink
Add UUID regex to 'Regular expression' operation
Browse files Browse the repository at this point in the history
I use this one often so I'm sure others will like it too :)
  • Loading branch information
cnotin authored Dec 26, 2023
1 parent 6ed9d45 commit 0bf7852
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 0bf7852

Please sign in to comment.