📜  Java中的String类stripLeading()方法及示例

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

Java中的String类stripLeading()方法及示例

String 类 stripLeading() 方法用于从字符串中去除前导空格,即stripLeading()方法仅删除字符串开头的所有空格。

例子:

Input:

String name = "   kapil   ";
System.out.println("#" + name + "#);
System.out.println("#" + name.stripLeading());


Output:

#   kapil   #
#kapil   # // Leading whitespaces are removed 

句法:

public String stripLeading()

返回:删除字符串开头的所有空格后的字符串。

下面是问题陈述的实现:

Java
// Java program to demonstrate the usage of
// stripLeading() method in comparison to
// other methods
  
class GFG {
    public static void main(String[] args)
    {
  
        // creating a string
        String str = " Hello, World ";
  
        // print the string without any function
        System.out.println("String is");
        System.out.println("#" + str + "#");
        System.out.println();
  
        // using strip() method
        System.out.println("Using strip()");
        System.out.println("#" + str.strip() + "#");
        System.out.println();
  
        // using stripLeading() method
        System.out.println("Using stripLeading()");
        System.out.println("#" + str.stripLeading() + "#");
        System.out.println();
  
        // using stripTrailing() method
        System.out.println("Using stripTrailing()");
        System.out.println("#" + str.stripTrailing() + "#");
    }
}


输出:

String is
#  Hello,  World #

Using strip()
#Hello,  World#

Using stripLeading()
#Hello,  World #

Using stripTrailing()
#  Hello,  World#