duplicate: http://stackoverflow.com/questions/527595/split-string
hi, i'm have string like this
200209151422010231.10408360.00502240.105090.0200209151423010231.10408360.00502289.605090.0
i want to split this
200209151422010231.10408360.00502240.105090.0
200209151423010231.10408360.00502289.605090.0
and store int Array when 0x01 value occurs in the string b'coz string length is not fixed. i have done splitting like this char 0x01; String packetArray[] = packets.split(packets,sp); but its showing array size 1 only means its not splitting the data,plz help me to solve the problem.
i want to split string by hexadecimal value not by dot or any charecter
thank u for reply.