I'm trying to split my string which contains several numbers to pieces and then save that into an array .
String bin = " 5 5444 755 7665 "
String[] words = split(bin, ' ' ) ;
but when I print that all of the pieces are save into bin[0] :
[0] 5
[0] 5444
1