end « StringBuffer « Java Data Type Q&A





1. What's a good way of building up a String given specific start and end locations?    stackoverflow.com

(java 1.5) I have a need to build up a String, in pieces. I'm given a set of (sub)strings, each with a start and end point of where they belong in ...

2. StringBuffer find 'start' and 'end' and write anything between them    stackoverflow.com

StringBuffer find 'start' and 'end' and write anything between them example:

text1
text2
start
text3
text4
end
text5
can i just print out of StringBuffer text3 and text4' Text that is between 'start' and 'end'