I came across this question on joining a list of strings. Many of the answers struck a nerve with me. A fair number of the posters didn't seem to know about StringUtils.join. I consider myself lucky to have happened across StringUtils.join on a google search.
StringUtils.join concatenates a List or collection of Strings using a delimiter, almost exactly the way join works in python. No more ugly for loops, join makes code easier to write and easier to read. It makes java a better language.
Being truly passionate about the virtues of StringUtils, I set out to gain enough reputation points to upvote the "correct" StringUtils answer.
Here is your chance, what little known programming wisdom/tricks are you extremely passionate about? What lengths have you gone to promote them?
