sktanmoy Active Member Licensed User Longtime User Jun 13, 2013 #1 I've some values in csv, values are like this: B4X: 10,Tanmoy 8,Amit 15,Anwar 45,Chinmoy I got this after splitting by ;. I can split by comma and get single string but I want to put those in a list view in lv.AddSingleLine2("Tanmoy", 10) format, within a foreach loop. Please suggest me. Thanks.
I've some values in csv, values are like this: B4X: 10,Tanmoy 8,Amit 15,Anwar 45,Chinmoy I got this after splitting by ;. I can split by comma and get single string but I want to put those in a list view in lv.AddSingleLine2("Tanmoy", 10) format, within a foreach loop. Please suggest me. Thanks.
sktanmoy Active Member Licensed User Longtime User Jun 13, 2013 #2 I'm solved I'm solved using B4X: Dim values As List values = Regex.Split(",", item) lv.AddSingleLine2(values.Get(1), values.Get0)) Thanks anyway. Upvote 0
I'm solved I'm solved using B4X: Dim values As List values = Regex.Split(",", item) lv.AddSingleLine2(values.Get(1), values.Get0)) Thanks anyway.