Overview
This workflow is a tutorial for anyone new to automation. It shows three ways to repeat an action. You can see how Specify Count, Iterate Collection, and Iterate Lines handle data. This helps you choose the right loop for your projects.
Who This Is For
This template helps builders understand how to handle repetitive data efficiently.
- New Users. Learn the basics of the platform through a simple demo.
- Data Managers. Understand how to process lists or arrays of information.
- Content Creators. Learn how to split blocks of text into separate lines for processing.
How It Works
- Fixed Repetition
- The Specify Count mode runs a task for a set number of times. It ignores the input data and follows your chosen count.
- List Processing
- The Iterate Collection mode goes through an array. It processes every single item in the list one by one.
- Line Splitting
- The Iterate Lines mode looks at a block of text. It treats every new line as a distinct task.
- Result Comparison
- The end node displays the output from all three paths. You can compare them to see how the data changed.
What You'll Need
- A sample list of words.
- A block of text with several lines.
How to Use
Step 1. Click the Test Run button in the upper right corner to open the input menu.
Step 2. Paste a list like ["Apple", "Banana", "Orange"] into the "Array field."
Step 3. Type the same words on separate lines in the "TextLine field."
Step 4. Click the Start Running button and check the results.