I have read few questions about parsing string by tags, but I didn't find the exaact answer for my specific problem.
The Problem: I have a big line of text.I need to ...
I have some Strings. They contain some data. Example: "Alberto Macano. Here is description." And another example: "Pablo Don Carlo. Description here."
What I need: A method to split The Name from ...
String s = "6158"; i have to split this as substrings like 6, 1, 5, 8, 61, 15, 58, 615, 158, and 6158. Here is my code code: -------------------------------------------------------------------------------- String s = "6158"; for(int i=0;i
Hi, i am not sure if this the right forum for my Problem. For an academic project i have to analyse a FileInputStream with a defined structure. It contains an String with the following structure: The first 10 chars are a date, the next 1 char is of the type char, the next 4 chars is a normal String and so ...