Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 17 Next »

The following table is a set of statements and keywords that can be used in the script.

Type

Description

ifelse Statement

The if statement executes the instruction code when the condition is true. Otherwise, the else statement will execute its instruction code. if...else statements can be nested inside another if...else statement using the else if statement which creates a nested loop. Please note, there is no limitation on how many else if can be nested inside if...else statement.

while Statement

The while statement execution will continue until the expression becomes false.

dowhile Statement

The do statement is executed at least once before while condition is evaluated. The loop will repeat until while condition becomes false.

for Statement

A for loop repeats until a specified condition becomes false. Below is the standard syntax used by a for loop:

for (initialExpression; condition; updateExpression) {
    // instruction code
}

switchcase Statement

Executing different processes based on different conditions.

continue Statement

Terminates execution of the current iteration in a loop and then execute the next iteration in a loop.

break Statement

Terminates the execution of a loop entirely.

return Function

Ends function execution and the function caller will return specifies a value.

runScript() Function

runScript() is used to call another script program. For example, if runScript() is being used in script name "A" to call a script name "B", as soon as script A executes, script B will execute as well.

Example for ifelse:

In this example, if A equals 1, assign 5 to A. If A equals 2, assign 10 to A. If A does not equal 1 or 2, assign 0 to A.

A = 1;
if (A == 1) {
    A = 5;
} else if (A == 2) {
    A = 10;
} else {
    A = 0;
}

Example for while:

In this example, 0 is set as the initial value for variable A. When A is less than 10, A will increment by 1 every execution until A equals 10. Once A equals 10, the while loop will end.

A = 0;
while (A < 10) {
    A = A + 1;
}

Example for do...while:

In this example, 0 is set as the initial value for variable A. The do statement will first be executed and increment A by 1 every execution until equal to 10. Once A equals 10, the do...while loop will end.

A = 0;
do {
    A = A + 1;
} while (A < 10);

Example for for

In this example,

In this statement, all expressions for the initialization, the decision-making, and the post-loop process are described in a single statement line.

The following example displays the WHILE statement example shown above but uses the FOR statement instead.

for (i = 1; i < 11; i = i + 1) {
    A = i;
}

For (A=0; A<10; A=A+1)

{

// Write the loop statement.

}

The FOR statement is followed by the initialization statement, the decision-making statement, and the post-processing statement.

FOR (Initialization statement; Decision-Making statement; Post-Processing statement)

In the example above, the loop statement will be executed 10 times. On the first execution, A will have a value of 0. After this, the statement “A=A+1“ will execute, and the loop will run again. The loop will continue to run until A is equal to 10 or greater.

(4) SWITCH-CASE Statement

This statement is used when different processes are needed for different cases. Each case can be distinguished by an unlimited number of CASE statements.

The CASE keyword must be followed by a constant value and terminated with a colon “ : ”. Tags, variables, or expressions cannot be used in a CASE statement. Only one DEFAULT statement can be used in the SWITCH statement.

The DEFAULT statement does not need a constant. This statement is executed if none of the other cases are to be executed. The DEFAULT statement can be omitted if it is not needed.

The BREAK keyword plays the role of terminating the SWITCH statement. If there is no BREAK keyword after a CASE statement, then corresponding CASE/DEFAULT statements will also be executed. This means that multiple CASEs can execute the same result, as shown in the example below.

Switch (A)

{

Case 1:

// Write the program when A is 1.

Break;

Case 5:

Case 7:

// Write the program when A is 5 or 7.

Break;

Default:

// Write the default program. This section can be omitted.

Break;

}

(5) CONTINUE Keyword

The CONTINUE keyword is used in loop statements. When the system meets the CONTINUE keyword, the flow skips the remainder of the loop and moves to the first part of the current loop. This keyword is often used in the WHILE, DO-WHILE, and FOR statements. It is especially useful when there are multiple decision-making statements (IF-ELSE) in the loop.

The following examples operate identically.

While (A<10)

{

A = A +1;

If (A < 5)

{

// Process when A is less than 5

}

Else

{

  // Process when A is greater than or equal to 5

}

}

 

While (A<10)

{

A = A +1;

If (A < 5)

{

// Process when A is less than 5

   Continue;

}

  // Process when A is greater than or equal to 5

}

(6) RETURN Keyword

Every program returns a result value to the caller. The RETURN keyword is used for designating a return value and termination of the program.

The following example processes three input parameters and returns the sum of them to the caller.

The name of the program shown below is MyPgm.

PARAM p1, p2, p3;

Return p1+p2+p3;

The program MyPgm will be called in another program as shown below. Then the variable ‘RtnValue’ will receive the value ‘6’.

RtnValue = MyPgm(1, 2, 3);

 (7) system.importScript Keyword

When you call an external program directly, the caller will be in standby mode until the called program (the external program) ends its operation.

If (A == 0)

system.importScript(“ScriptName”); // Executes an external program ‘ScriptName’

A = A + 1;              // Continues the rest of the program once external script has executed.

  • No labels