sphiratrioth666 commited on
Commit
13b0d85
·
verified ·
1 Parent(s): 193386c

Upload 6 files

Browse files
Regex/00. Regex Order.docx ADDED
Binary file (12.9 kB). View file
 
Regex/delete_quotes.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "0f76885a-9173-4f7f-bda8-a43f4ccdf2e4",
3
+ "scriptName": "Delete quotes",
4
+ "findRegex": "/\"/g",
5
+ "replaceString": "",
6
+ "trimStrings": [],
7
+ "placement": [
8
+ 1,
9
+ 2
10
+ ],
11
+ "disabled": false,
12
+ "markdownOnly": false,
13
+ "promptOnly": false,
14
+ "runOnEdit": true,
15
+ "substituteRegex": 0,
16
+ "minDepth": null,
17
+ "maxDepth": null
18
+ }
Regex/find_last_special_character.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "cc1e677c-c794-4bf4-82c7-7f65a4cfe90e",
3
+ "scriptName": "Find last special character",
4
+ "findRegex": ".*(\\*|```|\")(.*)$",
5
+ "replaceString": "$0$1",
6
+ "trimStrings": [],
7
+ "placement": [
8
+ 2
9
+ ],
10
+ "disabled": false,
11
+ "markdownOnly": false,
12
+ "promptOnly": false,
13
+ "runOnEdit": true,
14
+ "substituteRegex": 0,
15
+ "minDepth": null,
16
+ "maxDepth": null
17
+ }
Regex/remove___.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "87de1e47-59a0-4cef-b54d-20e3bb72d384",
3
+ "scriptName": "Remove **",
4
+ "findRegex": "/\\*\\*/g",
5
+ "replaceString": "*",
6
+ "trimStrings": [],
7
+ "placement": [
8
+ 1,
9
+ 2
10
+ ],
11
+ "disabled": false,
12
+ "markdownOnly": false,
13
+ "promptOnly": false,
14
+ "runOnEdit": true,
15
+ "substituteRegex": 0,
16
+ "minDepth": null,
17
+ "maxDepth": null
18
+ }
Regex/remove_``````.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "a678e45d-cbe2-48f6-a01e-668149bd59f0",
3
+ "scriptName": "Remove ``````",
4
+ "findRegex": "/\\`\\`\\`\\`\\`\\`/g",
5
+ "replaceString": "```",
6
+ "trimStrings": [],
7
+ "placement": [
8
+ 1,
9
+ 2
10
+ ],
11
+ "disabled": false,
12
+ "markdownOnly": false,
13
+ "promptOnly": false,
14
+ "runOnEdit": true,
15
+ "substituteRegex": 0,
16
+ "minDepth": null,
17
+ "maxDepth": null
18
+ }
Regex/trim_incomplete.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "6213bc0d-4604-4808-852a-53aaa1cccca0",
3
+ "scriptName": "Trim Incomplete",
4
+ "findRegex": "(.*?)([.!?]|```)(?!.*([.!?]|```))[^.!?]*$",
5
+ "replaceString": "$1$2",
6
+ "trimStrings": [],
7
+ "placement": [
8
+ 1,
9
+ 2
10
+ ],
11
+ "disabled": false,
12
+ "markdownOnly": false,
13
+ "promptOnly": false,
14
+ "runOnEdit": true,
15
+ "substituteRegex": 0,
16
+ "minDepth": null,
17
+ "maxDepth": null
18
+ }