Word Iterator

Used to execute a set of components for words in specified text source. Only words met the iterator condition will be processed. For every iteration the next appropriate word is parsed from the text source and placed to the variable. After that the set of iterator components will be executed. Iterator will finish its job, if the word met its condition was not found.

WordIterator

Result Variable

Set variable name, which is used to parse word for every iteration.

Iteration Variable

Set variable name iteration number to be placed in.

Source

Set text source from which word will be parsed.

Start After

Set condition for begin of the word to be parsed. The following operation modes are possible:

Begin of Word

The search string starts at begin of a word.

Defined Text

The search string starts after the specified text in a word. Template usage is possible.

Defined Text at Begin of Word

The search string starts after the specified text at begin of a word. Template usage is possible.

Match Case

Enables case-sensitive search of the word beginning.

Use Regular Expressions

Enables regular expressions usage for search of the word beginning.

Include Defined Text into Result

Enables adding defined text to the beginning of the word parsed.

Remove Spaces

Enables spaces deleting at the beginning of the word parsed.

Continue Until

Set condition for end of the word to be parsed. The following operation modes are possible:

End of Word

The search string ends at the end of a word.

Defined Text

The search string ends before the specified text in a word. Template usage is possible.

Defined Text at End of Word

The search string ends before the specified text at the end of a word. Template usage is possible.

Match Case

Enables case-sensitive search of the word end.

Use Regular Expressions

Enables regular expressions usage for search of the word end.

Include Defined Text into Result

Enables adding defined text to the end of the word parsed.

Remove Spaces

Enables spaces deleting at the end of the word parsed.

Ignore Empty Words

Enables skipping of empty words.


WordIteratorAdvanced

Use Text Qualifiers

Set text qualifiers automatically will be removed from parsed words.

Use Custom Delimiter(s)

Set delimiters separating words. By default white spaces are used.

Words May Contain New Line

Enables ignoring new line symbols in delimiters (custom or default). Therefore parsed words may contain new line symbols.

Words May Contain Spaces

Enables ignoring white space symbols in delimiters (custom or default). Therefore parsed words may contain white spaces.

See also

Iterators

Iterator Stopper

Next Iteration