How can i check if a string contains a white space or empty space or " ".
looking for Java example.
example String = "test word";
Thanking you.
|
|
For checking if a string contains whitespace use a
If you want to check if it only consists of whitespace then you can use
|
|||||
|
|
|
Check whether a String contains at least one white space character:
Reference: |
|||||||
|
|
This will tell if you there is any whitespaces: Either by looping:
or
And |
|||||||
|
|
You could use Regex to determine if there's a whitespace character. \s. More info of regex here www.regular-expressions.info/examples.html |
|||
|
|
|
Try
|
|||
|
|
|
Try it:
Good Way! |
|||
|
|
|
|||
|
|
|
Use this code, was better solution for my when you have four spaces and is a export for a txt file.
|
||||
|
|
|
|||
|
|