Regix Split & ListView

sktanmoy

Active Member
Licensed User
Longtime User
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
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
Cookies are required to use this site. You must accept them to continue using the site. Learn more…