java中substring的用法

來源:互聯網
上載者:User

標籤:ring   length   它的   首字母   index   補充   ret   dem   title   

java中substring的用法

 

str=str.substring(int beginIndex);截取掉str從首字母起長度為beginIndex的字串,將剩餘字串賦值給str;

str=str.substring(int beginIndex,int endIndex);截取str中從beginIndex開始至endIndex結束時的字串,並將其賦值給str;

以下是一段示範程式:

public class StringDemo{

public static void main(String agrs[]){

   String str="this is my original string";

   String toDelete=" original";

  

   if(str.startsWith(toDelete))

    str=str.substring(toDelete.length());

   else

    if(str.endsWith(toDelete))

     str=str.substring(0, str.length()-toDelete.length());

    else

    {

     int index=str.indexOf(toDelete);

     if(index!=-1)

     {

      String str1=str.substring(0, index);

      String str2=str.substring(index+toDelete.length());

      str=str1+str2;

     }

     else

      System.out.println("string /""+toDelete+"/" not found");

    }

   System.out.println(str);

}

}

(原文引用自:http://hi.baidu.com/ccsos/blog/item/42ff84afe6e62bcd7dd92a62.html)

補充:str=str.substring(int beginIndex,int endIndex);中最終得到的值:

         beginIndex =< str的值 < endIndex

 

 

 

 

 

 

以上補充內容是我自己以前的一點理解近日在API中看到對它的註解,把它發布在下面以便更多的和我一樣的初學者更好的理解上面的程式substring
public  substring(int beginIndex,                        int endIndex)
返回一個新字串,它是此字串的一個子字串。該子字串從指定的  beginIndex 處開始,一直到索引  endIndex - 1處的字元。因此,該子字串的長度為  endIndex-beginIndex

樣本:

 "hamburger".substring(4, 8) returns "urge" "smiles".substring(1, 5) returns "mile" 

 

參數:
beginIndex - 開始處的索引(包括)。
endIndex - 結束處的索引(不包括)。
返回:
指定的子字串。
拋出:
IndexOutOfBoundsException - 如果  beginIndex 為負,或  endIndex 大於此  String 對象的長度,或  beginIndex 大於  endIndex

java中substring的用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.