Group Formatting
Alltrim()
Removing leading and trailing blank spaces from a character string.
Alltrim( <cString> ) --> cTrimmedString
LChar2Var()
Converts a locale string into a value of a requested data type.
LChar2Var( <cString>, <cValtype> ) --> xValue
Lower()
Converts upper case letters in a character string into lower case letters.
Lower( <cString> ) --> cLowerCase
LTrim()
Removes blank spaces at the beginning of a character string.
LTrim( <cString> ) --> cTrimString
PadC() | PadL() | PadR()
Pads a character string, date or numeric value with fill characters
PadL( <Expression>, <nLen>, [<cFillChr>] ) --> cString PadC( <Expression>, <nLen>, [<cFillChr>] ) --> cString PadR( <Expression>, <nLen>, [<cFillChr>] ) --> cString
RTrim()
Deletes blank spaces at the end of a character string.
RTrim( <cString> ) --> cTrimString Trim( <cString> ) --> cTrimString
SET DECIMALS
Defines the number of decimal places used in the display of numbers.
SET DECIMALS TO [<nDecimals>]
SET TIME
Sets the display format for the system time
SET TIME TO HH:MM:SS | hh:MM:SS | hh:MM:SSTT | SYSTEM
SetLocale()
Retrieve or change country-specific literals, formats or separators
SetLocale( <nDefine>, [<cNewSetting>] ) --> cOldSetting
Str()
Converts the value of a numeric expression to a character string.
Str( <nValue>, [<nLength>], [<nDecimals>] ) --> cString
StrZero()
Converts a numeric value to a character string with leading zeros.
StrZero( <nValue>, [<nLength>], [<nDecimals>] ) --> cString
Transform()
Transforms a value to a formatted character string.
Transform( <Expression>, <cSayPicture> ) --> cFormattedString
Upper()
Converts lower case letters in a character string to upper case.
Upper( <cString> ) --> cUpperCase
Var2LChar()
Converts a variable to it's locale string representation.
Var2LChar( <xValue> ) --> cString