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
How about
String str = "your guest " + Joiner.on(" is here, your guest ").join(names) + " is here";