Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Split Function 1

Status
Not open for further replies.

Farheen

Programmer
Oct 27, 2003
3
PK
How to use split function for a variable length array
 
Here is a sample of using the Split function. If this is not what you are looking for, please post with more detail.

@split_formula_sample:
Code:
stringVar s1 := "Red,Blue,Green";
stringVar array a1 := split(s1,",");

a1[3];
Returns "Green"

~Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top