Procedural statements - Latest

Data360 Analyze Server Help

Product type
Software
Portfolio
Verify
Product family
Data360
Product
Data360 Analyze
Version
Latest
ft:locale
en-US
Product name
Data360 Analyze
ft:title
Data360 Analyze Server Help
Copyright
2025
First publish date
2016
ft:lastEdition
2025-02-20
ft:lastPublication
2025-02-20T11:13:02.494000
CAUTION:
This topic relates to Data360 Analyze Script which is the language that is used in some deprecated nodes. If you are looking for help configuring the Python-based nodes, see Python scripting.

break

Exits the innermost flow-control block. Must be used within a flow-control block.

Used in the following format:

break

Examples

i = 0 # i: loop iter var

while true # don’t conditionalize before iterations

{

... # do something

i = i + 1 # i = i+1

break # exit the while loop immediately.

}

continue

Continues at the top on the innermost flow-control block. Must be used within a flow-control block.

Used in the following format:

continue

Examples

i = 0 # i: loop iter var

while i < 100

{

i = i + 1 if ... # check something then continue else ... # do something else

}

while

Loops as long as the conditional expression is satisfied. The conditional expression is evaluated before each iteration. In each iteration, every statement is executed, and every expression is sequentially evaluated. Usually, the conditional expression contains a reference to a dynamic variable that is updated within the loop. If the conditional expression evaluates to the null value, iteration stops.

Used in the following format, where cond-expr must be a boolean valued expression, expr may be any expression and stmts may be any procedural statement:

while cond-expr {expr|stmt}*

Examples

i = 0 # i: loop iter var

while i < $num-iters # loop $num-iters times

{

... i = i + 1

# i = i+1

}