0 iptracker posted how to explode string in to array in swift how to explode string in to array in swift Edit Question
1 angeo answered Nov 30 '-1 00:00 you can use separatedBy in string components let str = "Hello arrayoverflow" let components = str.components(separatedBy: " ") Edit Answer
0 jabber answered Nov 30 '-1 00:00 use split with separator . will work same let are= "i am coder" let areitems= line.split(separator: " ") Edit Answer