7.5

Table Of Contents
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) )
MapUTF8 (function)
Converts a text string from its original encoding to UTF8. This function can be used within a ShowUTF8, ShowUTF8Left, a Sho-
wUTF8Right, and a ShowUTF8Center procedure.
Syntax
maputf8( text, encoding, reversedmapping )
Arguments
text
©2010 Objectif Lune Inc - 496 -