You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Matches duplicated word in a text.",
32
+
"author": "majvax",
33
+
"tags": [
34
+
"trim"
35
+
],
36
+
"contributors": [],
37
+
"code": "\\b(\\w+)\\s+\\1\\b\n\n\n-> Usage:\nI need to finish this task ✗\nI need to to finish this task ✓\n"
38
+
},
39
+
{
40
+
"title": "Whitespace Trimmer",
41
+
"description": "Matches leading and/or trailing whitespace.",
42
+
"author": "majvax",
43
+
"tags": [
44
+
"trim"
45
+
],
46
+
"contributors": [],
47
+
"code": "^\\s+|\\s+$\n\n\n-> Usage:\n(don't account for the quotation marks, it just to visualize whitespace)\n\"Hello World\" ✗\n\" Hello World\" ✓\n\"Hello World \" ✓\n\" Hello World \" ✓\n"
0 commit comments