筆記 3 String中常見API的使用 一

2021-10-09 08:37:18 字數 1040 閱讀 8413

package com.tedu.string;

/** * length():返回當前字串物件中字元的個數,實際上就是char型別陣列的長度

* * @author wildmess

* */

public

class

strlengthdemo

}

package com.tedu.string;

/** * indexof(string str)

* 查詢給定字元在當前字串中的位置

* 若存在,返回給定字串所在的索引位置

* 沒有則返回-1

* lastindexof(string str)

* 查詢給定字元在當前字串中的最後乙個位置

* @author wildmess

* */

public

class

indexdemo

}

package com.tedu.string;

/** * sunstring(int start,int end)

* 擷取當前字串中的內容

* 按照留前不留後的規則

* 返回擷取到的內容

* @author wildmess

* */

public

class

substringdemo

}

package com.tedu.string;

/** * 定義乙個類,對自己剛才學到的內容進行綜合練習

* @author wildmess

* */

public

class

stringtest

//定義乙個方法取出乙個字串中i的乙個點與第二個點之間的內容

public

static string gethostname

(string url)

}

筆記 3 String中常見API的使用 二

package com.tedu.string trim 方法功能是去掉當前字串倆邊的空格 author wildmess public class trimdeno package com.tedu.string charat int index 返回指定索引位置的字元,返回的是個char型別資料...

3 string 和 String的區別

1 string型別是密封 sealed 型別,即從object物件中繼承而來。2 string例項實際就是乙個unicode字串 3 string型別的值可以是字串文字 4 string關鍵字是預定義類system.string的別名,所以我們可以這樣寫 string name fred or s...

String 類的實現(3)String類常用函式

1 2 include3 include4 include5 include 6 using namespace std 自己模擬實現的部分相關c string庫函式 8int my strlen const char p 9 17return count 18 19char my strcopy ...