I need to convert String into array which is separated by new line like
("1000_at
1204_at
45800_at
")
my job is to put them in array like
(a[0]=1000_at
a[1]=1204_at
a[2]=45800_at)
any idea from somebody.please help me.
Printable View
I need to convert String into array which is separated by new line like
("1000_at
1204_at
45800_at
")
my job is to put them in array like
(a[0]=1000_at
a[1]=1204_at
a[2]=45800_at)
any idea from somebody.please help me.
The String class has a method to do just that.
String API