Tests if the specified string is empty or contains only white spaces. This is the same as the following expression:
s.trim().length() == 0
mergeStrings(strings).trim().length() == 0
s
strings
When an array element is not a string, it is converted to string
using Java java.lang.Object.toString()
method.
If the element is null
, it is considered to be an empty string.