7.6

Table Of Contents
Argument
element
Either a string value, or an array variable.
Code Sample Example
Example 1
This example creates an a string array with the same number of elements as the &parts array.
define( &partnames, arraystring, length( &parts ) )
Example 2
This example prints part of a string, starting after a specific delimiter.
define(&data,string,'This is a~sample string')
define(&x,integer, pos('~', &data))
%Find tilde
if(&x>1)
show(right(&data,length(&data)-&x))
%Show remainder of string
endif()
LowerCase (function)
Convert a string to all lower case characters.
Syntax
lowercase( string ) string
Argument
string
String value you want to convert to lower case. The string may be a mix of upper and lower case characters.
Code Sample Example
&partname := lowercase( @(30,16,39) )
©2010 Objectif Lune Inc - 494 -