Text: Regexp capture
Capture text from a string using regular expression.
Example
Regexp: (?<package>\w+) (?<size>\d+)
Input: Pack 42
Ouput:
- connector Pack
- connector 42
Parameters
Regexp—REQUIRED
A regexp to capture.
Skip if no match
If checked, ignore node when capture fail.
Input
Text—REQUIRED
The text to capture from.
Output
Captured groups
The groups captured by the regexp.