TOC PREV NEXT INDEX

$get_str_array_val

Synopsis

$get_str_array_val object index

Description

$get_str_array_val prints a specified element of a string array object. The object parameter specifies the name of a string array. The index parameter specifies which element of the string array to print.

Examples

OM(SingleWindowApp) ->_____string x[2] = {"hello", "goodbye"}
OM(SingleWindowApp) ->_____$get_str_array_val x 1
value is: `goodbye'
OM(SingleWindowApp) ->


TOC PREV NEXT INDEX