FOR_EACH_TOKEN

This is an iterator activity.  It will iterate for each token that is found within a string.  The processing logic nested beneath the activity is repeated for each token value. Tokens can be individual values using a space as a separator or can be multiple values within quotation marks.
For example:
This "string will" return 'four Tokens.'

Entering this string would result in the return of the following tokens:

Token 1 = This
Token 2 = string will
Token 3 = return
Token 4 = four Tokens.

INPUT Parameters:

STRING: Required

This parameter specifies the string where the tokens are to be sourced from.

OUTPUT Parameters:

TOKEN

This parameter contains the current token value during each iteration.