Title here
Summary here
Iterate over matches of a regular expression in a string.
This block is an iterator. Learn more about iterators.
The Regex you want to find in the string.
Example: ^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$
The string you want to find Regex in.
Example: These are example emails: email@example.com, another-email@example.com, and yet-another-email@example.com
The current match. As this block is an iterator, it will run the code for each time it sees a match, changing this variable each time.
Examples: email@example.com
, another-email@example.com
, yet-another-email@example.com