mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 16:56:15 -04:00
Added more modifiers to the Regex operation
This commit is contained in:
parent
f2c073798b
commit
b07c014b48
4 changed files with 30 additions and 33 deletions
|
@ -2322,12 +2322,27 @@ const OperationConfig = {
|
|||
{
|
||||
name: "Case insensitive",
|
||||
type: "boolean",
|
||||
value: Regex.REGEX_CASE_INSENSITIVE
|
||||
value: true
|
||||
},
|
||||
{
|
||||
name: "Multiline matching",
|
||||
name: "^ and $ match at newlines",
|
||||
type: "boolean",
|
||||
value: Regex.REGEX_MULTILINE_MATCHING
|
||||
value: true
|
||||
},
|
||||
{
|
||||
name: "Dot matches all",
|
||||
type: "boolean",
|
||||
value: false
|
||||
},
|
||||
{
|
||||
name: "Unicode support",
|
||||
type: "boolean",
|
||||
value: false
|
||||
},
|
||||
{
|
||||
name: "Astral support",
|
||||
type: "boolean",
|
||||
value: false
|
||||
},
|
||||
{
|
||||
name: "Display total",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue