Procedural statements - Latest

Data360 Analyze Server Help

Product type
Software
Portfolio
Verify
Product family
Data360
Product
Data360 Analyze
Version
Latest
Language
English
Product name
Data360 Analyze
Title
Data360 Analyze Server Help
Copyright
2024
First publish date
2016
Last updated
2024-11-28
Published on
2024-11-28T15:26:57.181000
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

}