Hi there,
I know there are a lot of this question in th ASP.Net section. But I'm currently in the dark. I've tried to find the answer from every search place but maybe my question was wrong. Heres the problem..
From here I want the array contain only the following
arr[0] = Here
arr[1] = I'm
arr[2] = currently
arr[3] = finding
arr[4] = solutions
arr[5] = but
arr[6] = couldnt
arr[7] = find
arr[8] = one
but it wont. Could anyone help me in this multi-whitespace, multi-delimiter problem?
Thank you in advance and sorry if there are already this type of question. (Please refer to the link available please?)
I know there are a lot of this question in th ASP.Net section. But I'm currently in the dark. I've tried to find the answer from every search place but maybe my question was wrong. Heres the problem..
Code:
delimiter = " " 'can be either whitespace or others StringA = "Here I'm currently finding/solutions//but couldnt find one.." arr = Split(StringA, delimiter)
arr[0] = Here
arr[1] = I'm
arr[2] = currently
arr[3] = finding
arr[4] = solutions
arr[5] = but
arr[6] = couldnt
arr[7] = find
arr[8] = one
but it wont. Could anyone help me in this multi-whitespace, multi-delimiter problem?
Thank you in advance and sorry if there are already this type of question. (Please refer to the link available please?)
Comment