I want to split string without using split . can anybody solve my problem I am tried but I cannot find the exact logic.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Use String tokenizer to split strings in Java without
split
: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.
This is the right answer
you can try, the way i did `{
You can do it using Java standard libraries.
Say the delimiter is
:
andand then add
to a new String array.
Keep doing this till your
start < string length
Should be enough I guess.
Split a string without using split()
}