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
A Flow Control operation to specify that the subsequent operation is only run on a subsection of the input, rather than the whole thing.
The subsection could be defined using a regular expression or offsets.
Instead of the subsection only applying to one operation, the existing 'Merge' operation could be used to define the point at which the entire input is processed again.
Example
Input
123test456
Recipe
Subsection (or some other more suitable name)
Section (regex): .{3}([a-z]+).{3}
To Braille
Output
123⠞⠑⠎⠞456
The text was updated successfully, but these errors were encountered:
I'm not sure how to use this Recipe to, say, extract numbers from some lines of input and sum them up. Am I misunderstanding how this is meant to work?
Summary
A Flow Control operation to specify that the subsequent operation is only run on a subsection of the input, rather than the whole thing.
The subsection could be defined using a regular expression or offsets.
Instead of the subsection only applying to one operation, the existing 'Merge' operation could be used to define the point at which the entire input is processed again.
Example
Input
Recipe
Output
The text was updated successfully, but these errors were encountered: