Skip to content

Commit 0359787

Browse files
add regex description
1 parent 2c90e06 commit 0359787

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

components/pipedream_utils/actions/extract-by-regular-expression/extract-by-regular-expression.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ export default {
44
name: "Formatting - [Text] Extract by Regular Expression",
55
description: "Find a match for a regular expression pattern. Returns all matched groups with start and end position.",
66
key: "pipedream_utils-extract-by-regular-expression",
7-
version: "0.0.5",
7+
version: "0.0.6",
88
type: "action",
99
props: {
1010
pipedream_utils,
11+
alert: {
12+
type: "alert",
13+
alertType: "info",
14+
content: "Capture groups let you extract just the parts you need from regex matches.\nLearn more here: https://regexone.com/lesson/capturing_groups",
15+
},
1116
input: {
1217
label: "Input",
1318
description: "Text you would like to find a pattern from",

components/pipedream_utils/actions/extract-by-regular-expressions-list/extract-by-regular-expressions-list.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ export default {
44
name: "Formatting - [Text] Extract by Regular Expressions List (Regex)",
55
description: "Find matches for regular expressions. Returns all matched groups with start and end position.",
66
key: "pipedream_utils-extract-by-regular-expressions-list",
7-
version: "0.1.0",
7+
version: "0.1.1",
88
type: "action",
99
props: {
1010
pipedream_utils,
11+
alert: {
12+
type: "alert",
13+
alertType: "info",
14+
content: "Capture groups let you extract just the parts you need from regex matches.\nLearn more here: https://regexone.com/lesson/capturing_groups",
15+
},
1116
key_0: {
1217
type: "string",
1318
label: "Key",

components/pipedream_utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/pipedream_utils",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Pipedream Utils Components",
55
"main": "pipedream_utils.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)