I\'m looking to use guava\'s Joiner to join List into one string, but with surrounding strings around each one in the list. So I want
Joiner
List
if Joiner is not a must you can use String.format()
String.format()
public static void main(String[] args) { List names = Arrays.asList("John", "Mary", "Henry"); StringBuilder builder = new StringBuilder(); for(int i=0; i