How to read a string in java?
Scanner sc= new Scanner(System.in); //System.in is a standard input stream.
System.out.print(""Enter a string: "");
String str= sc.nextLine(); //reads string.
🔗Source: stackoverflow.com
🔗Source: Java Interview Questions and Answers