Java
簡介
例如:
參數:
beginIndex - 開始處的索引(包括)。
返回:
指定的子字元串。
拋出:
IndexOutOfBoundsException - 如果 beginIndex 為負或大於此 String 對象的長度。
--------------------------------------------------------------------------------
substring
public String substring(int beginIndex, int endIndex)
返回一個新字元串,它是此字元串的一個子字元串。該子字元串從指定的 beginIndex 處開始, endIndex:到指定的 endIndex-1處結束。
示例:
"hamburger".substring(3,8) returns " burge"
"smiles".substring(0,5) returns " smile"
參數:
beginIndex - 開始處的索引(包括)。
endindex 結尾處索引(不包括)。
返回:
指定的子字元串。
拋出:
IndexOutOfBoundsException - 如果 beginIndex 為負,或length大於字元串長度。
javascript示例
上面返回字元串:"el";
str.substring(1,2) //返回e
str.substring(1) //返回"elloworld";
還有此函式中會出現奇怪的現象,當出現str.substring(5,0);
這又是怎么回事,不過返回的是"Hello",
str.substring(5,1) //返回"ello",截去了第一位,返回餘下的.
可見substring(start,end),可以有不同的說明,即start可以是要返回的長度,end是所要去掉的多少個字元(從首位開始).
在JS中,substr(start,length),用得較方便.
C#中
變數.Substring(參數1,參數2);
截取字串的一部分,參數1為左起始位數,參數2為截取幾位。
如:string s1 = str.Substring(0,2);
C#中有兩個重載函式
舉例如下代碼,VS2005編譯通過
程式輸出的結果:
js用法
在JS中, 函式聲明: stringObject.substring(start,stop)
start是在原字元串檢索的開始位置,stop是檢索的終止位置,返回結果中不包括stop所指字元.
CB用法
用途
Returns the substring at the specified location within a String object.
用法舉例
strVariable. substring(start, end )
"String Literal". substring(start, end )
用法說明:返回一個字串,其中start是起始的index,end是終止的index,返回的字串包含起始index的字元,但是不包含end的字元。這個是string類下的一個method。
用法實例
資料來源
C++Builder2007幫助文檔(原文是英文的)
網上資料
ms-help://borland.bds5/script56/html/9cf9a005-cbe3-42fd-828b-57a39f54224c.htm