溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

java substring 截取字符串的方法

發(fā)布時(shí)間:2020-10-08 10:53:50 來(lái)源:腳本之家 閱讀:193 作者:csdn9_14 欄目:編程語(yǔ)言

substring(參數(shù))是java截取字符串的一個(gè)方法。

它有兩種傳參的方式:

第一種:public String substring(int beginIndex)

返回一個(gè)新的字符串,它是此字符串的一個(gè)子字符串,該字符串從指定索引出的字符開(kāi)始,到此字符串末尾結(jié)束。

第二種:public String substring(int beginIndex,int endIndex)

同樣返回一個(gè)新的字符串,該字符串從指定的beginIndex索引處開(kāi)始,到指定的endIndex索引值結(jié)束。

不包括endIndex索引處的字符。

所以,該字符串的長(zhǎng)度就是endIndex-beginIndex。

示例一:

public class Main {
  public static void main(String args[]) {
   String str = "this is Java";
	 String result = str.substring(8);
   System.out.println(result);
  }
}

結(jié)果: Java

示例二:

public class Main {
  public static void main(String args[]) {
   String str = "this is Java";
	String result = str.substring(5,10);
   System.out.println(result);
  }
}

結(jié)果:is Ja

以上所述是小編給大家介紹的java substring 截取字符串的方法詳解整合,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI