字符串類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()
返回值:刪除字符串開頭的所有空格後的字符串。
Note:Like the stripTrailing() method in java, we have strip() (removes leading and trailing whitespace) and stripLeading() (removes the only leading whitespace).
下麵是問題陳述的實現:
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#
相關用法
- Java Class forName(String, boolean, ClassLoader)用法及代碼示例
- Java String repeat()用法及代碼示例
- Java String stripTrailing()用法及代碼示例
- Java String strip()用法及代碼示例
- Java String indent()用法及代碼示例
- Java String lines()用法及代碼示例
- Java Java.util.concurrent.RecursiveAction用法及代碼示例
- Java Java.util.concurrent.RecursiveTask用法及代碼示例
- Java Java.awt.image.RescaleOp用法及代碼示例
- Java Java.util.concurrent.Phaser用法及代碼示例
- Java Class getModule()用法及代碼示例
- Java Class getPackage()用法及代碼示例
- Java Class getPackageName()用法及代碼示例
- Java Class getTypeParameters()用法及代碼示例
- Java Class getDeclaredClasses()用法及代碼示例
- Java Class getDeclaredMethods()用法及代碼示例
注:本文由純淨天空篩選整理自kapilnama1998大神的英文原創作品 String Class stripLeading() Method in Java With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。