Hi,
I want to split a string based on the nth occurrence of comma(,).
StringValue = a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z
I want to split the string after the 20th occurrence of commas and save them into an array.
ArrayValue[0] = {a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t}
ArrayValue[1] = {u,v,w,x,y,z}
I can able to split each string into single array elements. Can anyone help me on this?
Thanks,