Line Iterator

Used to execute a set of components for lines in specified text source. Only lines met the iterator condition will be processed. For every iteration the next appropriate line 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 line met its condition was not found.

LineIterator

Result Variable

Set name of the variable data to be parsed in.

Iteration Variable

Set variable name iteration number to be placed in.

Source

Set the source text data to be parsed from.

Start After

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

Begin of Line

The search string starts at begin of a line.

Defined Text

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

Defined Text at Begin of Line

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

Match Case

Enables case-sensitive search of the string beginning.

Use Regular Expressions

Enables regular expressions usage for search of the string beginning.

Include Defined Text into Result

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

Remove Spaces

Enables spaces deleting at the beginning of the string parsed.

Continue Until

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

End of Line

The search string ends at the end of a line.

Defined Text

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

Defined Text at End of Line

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

Match Case

Enables case-sensitive search of the string end.

Use Regular Expressions

Enables regular expressions usage for search of the string end.

Include Defined Text into Result

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

Remove Spaces

Enables spaces deleting at the end of the string parsed.

Return Full String

Enables whole line extracting for the found string.

Ignore Empty Strings

Enables skipping of empty strings.

See also

Iterators

Block Iterator

Iterator Stopper

Next Iteration