-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython3-group.json
More file actions
51 lines (51 loc) · 2.09 KB
/
python3-group.json
File metadata and controls
51 lines (51 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"title": "Python3 regex group",
"description": "Testing python3 regex group",
"author": "regular.express",
"docker_image": "regexpress/python:3",
"properties": [
{
"name": "test_type",
"type": "hidden",
"value" : "group"
},
{
"name": "regex",
"type": "string",
"required": true,
"example": "([A-Za-z]*)",
"help": "Regular expression.",
"important": true
},
{
"name": "IGNORECASE",
"type": "boolean",
"help": "Perform case-insensitive matching; expressions like [A-Z] will match lowercase letters, too."
},
{
"name": "LOCALE",
"type": "boolean",
"help": "Make \\w, \\W, \\b, \\B, \\s and \\S dependent on the current locale."
},
{
"name": "MULTILINE",
"type": "boolean",
"help": "When specified, the pattern character '^' matches at the beginning of the string and at the beginning of each line (immediately following each newline); and the pattern character '$' matches at the end of the string and at the end of each line (immediately preceding each newline). By default, '^' matches only at the beginning of the string, and '$' only at the end of the string and immediately before the newline (if any) at the end of the string."
},
{
"name": "DOTALL",
"type": "boolean",
"help": "Make the '.' special character match any character at all, including a newline; without this flag, '.' will match anything except a newline."
},
{
"name": "ASCII",
"type": "boolean",
"help": "Make \\w, \\W, \\b, \\B, \\d, \\D, \\s and \\S perform ASCII-only matching instead of full Unicode matching."
},
{
"name": "VERBOSE",
"type": "boolean",
"help": "This flag allows you to write regular expressions that look nicer and are more readable by allowing you to visually separate logical sections of the pattern and add comments. Whitespace within the pattern is ignored, except when in a character class or when preceded by an unescaped backslash. When a line contains a # that is not in a character class and is not preceded by an unescaped backslash, all characters from the leftmost such # through the end of the line are ignored."
}
]
}