7.5

Table Of Contents
%Define string
define(&x,integer, pos('~', &data))
%Find tilde
%Print the string up to the tilde character, if found
if(&x>1)
show(left(&data,&x-1))
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) )
Mid (function)
Extracts a specified number of characters from a string, starting at a specific position.
Syntax
mid( string, start, length ) string value
Arguments
string
String value from which to extract characters.
start
Integer value specifying where the first character to extract is located.
length
Integer value specifying how many characters to extract, starting from number onwards.
©2010 Objectif Lune Inc - 546 -