Question: How to test if a string is empty or blank in java? Below is my code, I want to create a loop that keeps running

How to test if a string is empty or blank in java? Below is my code, I want to create a loop that keeps running as long as the input is not empty Scanner input = new Scanner(System.in); do { System.out.print("Please type in a sentence: "); String newSentence = input.nextLine(); pigLatin(newSentence); }while(!input.isEmpty()); But the java says: Translate.java:10: ??: ????? }while(!input.isEmpty()); ^ ??: ?? isEmpty() ??: ???Scanner??? input 1 ??? How to solve that?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!