Answers for "check whether the string has next line or not in java"

15

java string next line

// its \r\n
String a = "Hello, "
String b = "there!"
System.out.println(a+b);//returns Hello, there
System.out.println(a+"\r\n"+b);//returns Hello, 
//there! //it will be on the next line!
Posted by: Guest on July-08-2020
0

java detect new line in string

String word = "A string \n with a new Line inside"
String newline = System.getProperty("line.separator");
boolean hasNewline = word.contains(newline);
if(hasNewLine){
	System.out.println("Enter has been pressed");
}
Posted by: Guest on February-13-2021

Code answers related to "check whether the string has next line or not in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language