Java String trim()方法
描述:
此方法返回字符串的副本,開頭和結尾的空格省略(被去除)。
語法
此方法定義的語法如下:
public String trim()
參數
這裡是參數的細節:
-
NA
返回值:
-
它返回此字符串的一個副本(開頭和結尾的空格去掉)或者這個字符串冇有前導或結尾空白格.
例子:
import java.io.*; public class Test{ public static void main(String args[]){ String Str = new String(" Welcome to Tutorialspoint.com "); System.out.print("Return Value :" ); System.out.println(Str.trim() ); } }
這將產生以下結果:
Return Value :Welcome to Tutorialspoint.com