I want to split string without using split . can anybody solve my problem I am tried but I cannot find the exact logic.
|
|
I'm going to assume that this is homework, so I will only give snippets as hints: Finding indices of all occurrences of a given substringHere's an example of using
String API links
Related questionsExtracting substrings at given indices out of a stringThis snippet extracts
Some key ideas:
String API links
Related questions |
|||
|
|
|
Since this seems to be a task designed as coding practice, I'll only guide. No code for you, sir, though the logic and the code aren't that far separated. You will need to loop through each character of the string, and determine whether or not the character is the delimiter (comma or semicolon, for instance). If not, add it to the last element of the array you plan to return. If it is the delimiter, create a new empty string as the array's last element to start feeding your characters into. |
|||||||||||
|
|
You do now that most of the java standard libraries are open source In this case you can start here |
|||||||||||
|
|
This is the right answer import java.util.StringTokenizer; public class tt { public static void main(String a[]){ String s = "012ab567ab0123ab";
} } |
|||
|
|
|
The logic is: go through the whole string starting from first character and whenever you find a space copy the last part to a new string.. not that hard? |
|||
|
|
|
You cant split with out using split(). Your only other option is to get the strings char indexes and and get sub strings. |
|||||||||||
|
|
The way to go is to define the function you need first. In this case, it would probably be:
The return type doesn't have to be an array. It can also be a list:
The code would then be roughly as follows:
There are many fine points that you need to consider:
|
|||
|
|
|
You can do it using Java standard libraries. Say the delimiter is
and then add
to a new String array. Keep doing this till your Should be enough I guess. |
||||
|
|
|
Use String tokenizer to split strings in Java without
|
||||
|
|
