Split

I just mis split, because I often use it for make my app international. Then I have a string constant to fill a array with. Then I cut with split the constant and put it in array.

Jens

well here is how to do it in SWIFT… perhaps this will give somebody a clue

let arr:[String]=self.componentsSeparatedByString(sep_by)

The new framework for iOS has split

Split is in iOS as a Text method.

dim t as text = "a,b,c"
dim arr() as text = t.Split( "," )

Did you mean something else?

That works. Thank you