From a String 2654993672 , what I want is to separate it into two parts.
String part1 = "26";
String part2 = "54993672";
With the split () method I can separate them with a delimiter ...
String[] parts = string.split("-");
String part1 = parts[0];
String part2 = parts[1];
But what I need is to separate them without using it.