//i want to split with all these characters.
char[] arr ={ ' \n' , ' ' , ';' , '.' };
arrWords = strCompleteOriginal.Split(arr);
In this split function .It is not splitting with '\n'.
why?
i want get split with all these characters.
is there any other way?