I have a list of strings, e.g. days of the week. And I'd like to join them on comma, with "and" before the last element. E.g: "I'm available on Tue, Wed, Thu and Fri".
Something elegant like
Joiner.on(", ").join(days)
Does not work. Is there an elegant way to do it with Guava or similar library?
Thanks
Java 6/7 compatible solution using Guava:
or if you want to accept
Iterable
(and / or use more Guava stuff):It handles all edge cases except null elements in
strings
- if you want to handle them and not throw NPE, add.useForNull(stringForNull)
to your joiner.