Added more modifiers to the Regex operation

This commit is contained in:
n1474335 2018-01-12 23:42:48 +00:00
parent f2c073798b
commit b07c014b48
4 changed files with 30 additions and 33 deletions

View file

@ -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",