Skip to content

Instantly share code, notes, and snippets.

@adojos
Last active March 9, 2023 11:03
Show Gist options
  • Save adojos/d1bbb807f33045ff806d4154fd6cd604 to your computer and use it in GitHub Desktop.
Save adojos/d1bbb807f33045ff806d4154fd6cd604 to your computer and use it in GitHub Desktop.
Java: Concatenate Strings Using String Joiner #java
private static void usingStringJoiner() {
StringJoiner strJoiner = new StringJoiner(",","{","}"); strJoiner.add("red");
strJoiner.add("blue");
strJoiner.add("green");
System.out.println(strJoiner);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment