I'm working on a server that returns character separated lists to its' client. In order to build these lists I have to detect the first iteration through a for-each loop:
StringBuilder builder = new StringBuilder() ;
boolean firstIterationFlag = true ;
for ( String s : list ){
if ( firstIterationFlag) {
firstIterationFlag = false ;
} else {
builder.append(separator);
}
builder.append(s) ;
}
return builder.toString() ;
Is there a way of doing this without the flag?

forEachloop, you could manually do a normalforloop, starting with index1instead of 0. – Sheriff May 8 '12 at 16:26