📌  相关文章
📜  检查Java中的字符串是否仅包含空格的程序

📅  最后修改于: 2022-05-13 01:55:44.537000             🧑  作者: Mango

检查Java中的字符串是否仅包含空格的程序

给定一个字符串str,任务是检查这个字符串是否只包含空格或一些文本,在Java中。

例子:

Input: str = "              " 
Output: True

Input: str = "GFG"
Output: False

方法:

  • 获取要在 str 中检查的字符串
  • 我们可以使用 String 类的 trim() 方法来删除字符串中的前导空格。
    句法:
    str.trim()
    
  • 然后我们可以使用 String 类的 isEmpty() 方法来检查结果字符串是否为空。如果字符串仅包含空格,则此方法将返回 true
    句法:
    str.isEmpty()
    
  • 使用方法链结合使用这两种方法。
    str.trim().isEmpty();
    
  • 如果上述条件为真,则打印真。否则打印错误。

下面是上述方法的实现:

// Java Program to check if
// the String is not all whitespaces
  
class GFG {
  
    // Function to check if the String is all whitespaces
    public static boolean isStringAllWhiteSpace(String str)
    {
  
        // Remove the leading whitespaces using trim()
        // and then check if this string is empty
        if (str.trim().isEmpty())
            return true;
        else
            return false;
    }
  
    // Driver code
    public static void main(String[] args)
    {
        String str1 = "GeeksforGeeks";
        String str2 = "              ";
  
        System.out.println("Is string [" + str1
                           + "] only whitespaces? "
                           + isStringAllWhiteSpace(str1));
        System.out.println("Is string [" + str2
                           + "] only whitespaces? "
                           + isStringAllWhiteSpace(str2));
    }
}
输出:
Is string [GeeksforGeeks] only whitespaces? false
Is string [              ] only whitespaces? true