Oct 27, 2003 #1 Farheen Programmer Joined Oct 27, 2003 Messages 3 Location PK How to use split function for a variable length array
Oct 27, 2003 1 #2 bdreed35 Programmer Joined Mar 2, 2003 Messages 1,549 Location US 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 Upvote 0 Downvote
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