1、trim()方法
#trim() 方法用來刪除字串的頭尾空白符。
實例:
public class Test { public static void main(String args[]) { String Str = new String(" www.runoob.com "); System.out.print("原始值 :" ); System.out.println( Str ); System.out.print("删除头尾空白 :" ); System.out.println( Str.trim() ); } }
結果:
原始值 : www.runoob.com 删除头尾空白 :www.runoob.com
#2、split()方法
split( ) 方法根據符合給定的正規表示式來拆分字串。
注意: . 、 | 、 * 等轉義字符,必須加 \\。
注意:多個分隔符,可用 | 作為連字號。
語法:
public String[] split(String regex, int limit)
參數:
regex
-- 正規表示式分隔符號。
limit
-- 分割的份數。
傳回值:
字串陣列。
3、charAt()方法
charAt() 方法用於傳回指定索引處的字元。索引範圍為從 0 到 length() - 1。
語法:
public char charAt(int index)
參數:
index
-- 字元的索引。
傳回值:
傳回指定索引處的字元。
實例:
public class Test { public static void main(String args[]) { String s = "www.runoob.com"; char result = s.charAt(8); System.out.println(result); } }
結果:
o
4、substring()方法
substring() 方法傳回字串的子字串。
語法:
public String substring(int beginIndex) 或 public String substring(int beginIndex, int endIndex)
參數:
<span style="color: rgb(20, 25, 30); font-family: "Microsoft Yahei", "Hiragino Sans GB", Helvetica, "Helvetica Neue", 微软雅黑, Tahoma, Arial, sans-serif; font-size: 14px;">beginIndex</span>
-- 起始索引(包括), 索引從0 開始。
endIndex
-- 結束索引(不包含)。
傳回值
子字串。
實例:
public class Test { public static void main(String args[]) { String Str = new String("www.runoob.com"); System.out.print("返回值 :" ); System.out.println(Str.substring(4) ); System.out.print("返回值 :" ); System.out.println(Str.substring(4, 10) ); } }
結果:
返回值 :runoob.com 返回值 :runoob
推薦教學:Java教學
以上是java中的常用方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!