Skip to content
Advertisement

How to handle empty scanner input strings in java?

I’m working on a .xml file generator. It works by asking the user to input 5 different values and then using them for generating a .xml data container. This is the code:

JavaScript

I want the program to detect when someone inputs an empty string by pressing the enter key with no written text and print a message asking the user to not input empty strings. I tried this with a try-catch statement but after printing the message the program executes the next line instead of re-executing the one where the user input an empty string. How can I achieve this?

Advertisement

Answer

You might want to use.

JavaScript

As suggested in comments .readLine() returns an empty string if you supply a blankline or simply hit enter.

The above regex expression will take care of empty string "" or whitespaces that user might enter.

edit 1 As suggested in comments regex could have been over-kill here. The string.trim() will take care of tabs, trailing-leading whitespaces and empty string.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement