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