Poornimapriya
Member
Hi friends.... I am new to vb.net... I am developing an application proj on it.. In that, I want to separate charaters of the string which is of following stream,
18 Feb 2011 06:05:24 0601 110218055515,3,26;9948;9948;9947;9951;9956;9954;9961;9958;9965;9967;125672N0801272E;110218055550;
In this I want to separate as,
Mail recieved time = 18 Feb 2011 06:05:24
msg recieved time = 110218055515
msg sent time = 110218055550
Position = 125672N0801272E
water level 1 = 9948
water level 2 = 9948
water level 3 = 9947
water level 4 = 9951
water level 5 = 9956
water level 6 = 9954
water level 7 = 9961
water level 8 = 9958
water level 9 = 9965
water level 10 = 9967
I am only aware of IndexOf and LastIndexOf methods, and these methods are used to find the index of first and last occurence character position, but I want to split the string in subsequent characters too... So Pls Help me.... Thanks in advance............


18 Feb 2011 06:05:24 0601 110218055515,3,26;9948;9948;9947;9951;9956;9954;9961;9958;9965;9967;125672N0801272E;110218055550;
In this I want to separate as,
Mail recieved time = 18 Feb 2011 06:05:24
msg recieved time = 110218055515
msg sent time = 110218055550
Position = 125672N0801272E
water level 1 = 9948
water level 2 = 9948
water level 3 = 9947
water level 4 = 9951
water level 5 = 9956
water level 6 = 9954
water level 7 = 9961
water level 8 = 9958
water level 9 = 9965
water level 10 = 9967
I am only aware of IndexOf and LastIndexOf methods, and these methods are used to find the index of first and last occurence character position, but I want to split the string in subsequent characters too... So Pls Help me.... Thanks in advance............