asp.net中substring用法

來源:互聯網
上載者:User
substring
public String substring(int beginIndex)返回一個新的字串,它是此字串的一個子字串。該子字串始於指定索引處的字元,一直到此字串末尾。
例如:

"unhappy".substring(2) returns "happy"
"Harbison".substring(3) returns "bison"
"emptiness".substring(9) returns "" (an empty string)

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

--------------------------------------------------------------------------------

substring
public String 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。

C#中 substring() 有兩個重載函數
substring(int a) 用法同上
substring(int a,int b) b參數應該為截取後的字串長度

上面string得用法不知是針對哪種文法

針對的是c#

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.