Difference between revisions of "EXPLODE()"

From Recital Documentation Wiki
Jump to: navigation, search
 
Line 1: Line 1:
{{YLM to do}}
+
==Purpose==
 +
Function to separate a string into the elements of an array
 +
 
 +
 
 +
==Syntax==
 +
EXPLODE(<expC1>, <expC2>)
 +
 
 +
 
 +
==See Also==
 +
[[AADD()]], [[AAVERAGE()]], [[ABROWSE()]], [[ACHOICE()]], [[ACOL()]], [[ACOPY()]], [[ADEL()]], [[ADESC()]], [[ADIR()]], [[AELEMENT()]], [[AFIELDS()]], [[AFILL()]], [[AINS()]], [[ALEN()]], [[AMAX()]], [[AMIN()]], [[APPEND FROM ARRAY]], [[AROW()]], [[ARRAY()]], [[ASCAN()]], [[ASIZE()]], [[ASORT()]], [[ASTORE()]], [[ASTRING()]], [[ASUBSCRIPT()]], [[ASUM()]], [[COPY TO ARRAY]], [[DECLARE]], [[DIMENSION]], [[GATHER]], [[IMPLODE()]], [[IN_ARRAY()]], [[LOCAL]], [[MENU AT]], [[MENU BROWSE]], [[MENU FIELDS]], [[MENU FILES]], [[MENU FROM]], [[MENUITEM()]], [[PRIVATE]], [[PUBLIC]], [[RELEASE]], [[RESTORE]], [[SAVE]], [[SCATTER]]
 +
 
 +
 
 +
==Description==
 +
The EXPLODE() function returns an array, having separated the string. <expC2>, into individual elements of the array.  The character string, <expC1>, is used as the string separator.
 +
 
 +
 
 +
==Example==
 +
<code lang="recital">
 +
menu fields select "+"
 +
aMenu = explode("+", menuitem())
 +
backtostring = implode("+", aMenu)
 +
disp memo
 +
</code>
 +
 
 +
 
 +
==Products==
 +
Recital, Recital Server
 +
[[Category:Documentation]]
 +
[[Category:Functions]]
 +
[[Category:Array Processing]]
 +
[[Category:Array Processing Functions]]
 +
[[Category:String Data]]
 +
[[Category:String Data Functions]]

Revision as of 11:49, 16 February 2010

Purpose

Function to separate a string into the elements of an array


Syntax

EXPLODE(<expC1>, <expC2>)


See Also

AADD(), AAVERAGE(), ABROWSE(), ACHOICE(), ACOL(), ACOPY(), ADEL(), ADESC(), ADIR(), AELEMENT(), AFIELDS(), AFILL(), AINS(), ALEN(), AMAX(), AMIN(), APPEND FROM ARRAY, AROW(), ARRAY(), ASCAN(), ASIZE(), ASORT(), ASTORE(), ASTRING(), ASUBSCRIPT(), ASUM(), COPY TO ARRAY, DECLARE, DIMENSION, GATHER, IMPLODE(), IN_ARRAY(), LOCAL, MENU AT, MENU BROWSE, MENU FIELDS, MENU FILES, MENU FROM, MENUITEM(), PRIVATE, PUBLIC, RELEASE, RESTORE, SAVE, SCATTER


Description

The EXPLODE() function returns an array, having separated the string. <expC2>, into individual elements of the array. The character string, <expC1>, is used as the string separator.


Example

menu fields select "+"
aMenu = explode("+", menuitem())
backtostring = implode("+", aMenu)
disp memo


Products

Recital, Recital Server