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...