How to join strings with Delimiter in Java
In this post we will give you information about How to join strings with Delimiter in Java. Hear we will give you detail about How to join strings with Delimiter in JavaAnd how to use it also give you demo for it if it is necessary.
To join strings with delimiter we can use the String.joiner() method in Java.
Here is an example that joins the given strings with a delimiter -.
public class Main{ public static void main(String[] args) { String all = String.join("-","01","02","2020"); System.out.println(all); }}
Output:
01-02-2020
Similarly, in Java 8 we can also use StringJoiner class.
import java.util.StringJoiner;public class Main{ public static void main(String[] args) { StringJoiner all = new StringJoiner("-"); all.add("1").add("02").add("2020"); System.out.println(all); // 01-02-2020 }}
Hope this code and post will helped you for implement How to join strings with Delimiter in Java. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs