java match a pattern till find end of line code example
Example: 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");
}