How to create a multiline string in Java
In this post we will give you information about How to create a multiline string in Java. Hear we will give you detail about How to create a multiline string in JavaAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to create a multiline string in Java.
Creating a multiline string
To create a multiline string in Java, we can use the built-in join() method by passing /n as a first argument to it.
Here is an example:
public class Main{ public static void main(String[] args) { String s = String.join("n", "This is the way we can", "create a multiline string", "in java" ); System.out.println(s); }}
Output:
This is the way we cancreate a multiline stringin java
Hope this code and post will helped you for implement How to create a multiline string 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