Assuming there's no embedded tags you can do something like this:
private List<String> getText(String text){
List<String> result = new ArrayList<String>();
String[] sections = text.split("<pre>");
int i = 0;
for (String s : sections) {
i = s.indexOf("</pre>");
if (i >= 0)
results.add(s.substring(0, i));
}
return result;
}
Example of code running when
say:
text = "test text here <pre> item one </pre> and then another item <pre> item 2 </pre> and then some stuff."
So the first thing to explain is:
String[] sections = text.split("<pre");
This defines a new array of strings and assigns it to the result of a call to the String split function of "text"
This function breaks the string up in to sections delimited by "<pre>" so you get:
sections[0] = "test text here"
sections[1] = "item one </pre> and then another item"
sections[2] = "item 2 </pre> and then some stuff."
so as you can see from that all we now need to do is remove anything after "</pre>" which is where the next bit comes in:
for (String s : sections)
Is the start of a "for each" loop that assigns the String s to each element of the array sections in turn.
So for each of the 3 strings above we do this:
i = s.indexOf("</pre>");
if (i >= 0)
results.add(s.substring(0, i));
So if the string contains </pre> then take a substring from the begining up until the "</pre>" and add it to our results. Since sections[1] and sections[2] so contain it they will end up in the results.
I hope this helps?
Here's how i'd implement JavaJugglers solution to avoid using while (true):
private List<String> getText(String text){
List<String> result = new ArrayList<String>();
int indexStart = text.indexOf("<pre>");
int indexEnd = text.indexOf("</pre>");
while (indexStart >= 0 && indexEnd > indexStart) {
result.add(text.substring(indexStart + 5, indexEnd));
text = text.substring(indexEnd + 6);
indexStart = text.indexOf("<pre>");
indexEnd = text.indexOf("</pre>");
}
return result;
}
<pre>(.+?)</pre>? – paul Sep 10 '12 at 14:09<pre>and</pre>it's ok – Merlin Sep 10 '12 at 14:11