There probably is a method to return the index of the first non-blank char in a String in Java5/6. But I cannot find it any more. A code anylizing tool says it is better than checking String.trim().length().
|
I'd use the Guava
|
|||||||||||
|
|
I always like to use the Apache Commons StringUtils library. It has isEmpty() and is isBlank() which handles whitespace. http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/StringUtils.html Not to mention the numerous other helpful methods in that class and the library in general. |
|||||||
|
|
There is a method in String for this exact purpose.
This will return true. |
|||
|
|
|
Java 6 has introduced |
|||
|
|
If you want to test for a string that has a zero length than using If you want to test if the string only contains whitespaces, then searching for the first non-whitespace character is more efficient because not intermediate object is created (as with But in any case I too recommend Apache's commons |
|||
|
|
|
If you want to test, whether it only contains whitespace characters, you can use RegEx
Thinks it's more efficient than trim().isEmpty(), especially if you expect whitespaces and have long Strings, though I'm not sure how much effort it takes to compile the RegEx. |
|||
|
|
|
Okay guys, I have found it finally from PMD rules of InefficientEmptyStringCheck:
This is only a suggestion from PMD. To adopt it or not is depending on which has prioriy: the efficiency of programs or the time of programmers. |
|||
|
|
|
(Best way) But also,
|
|||||||||
|
trim()returns a newStringonly if its content is different from theStringit's been called on, otherwise it returns itself (that's even documented so you can rely on it!). So the newStringinstance is only created in the (usually rare) case where there's a space at the start or end of theString. – Joachim Sauer Apr 28 '11 at 14:21