package cn.learn.day08.demo02;
/*public int length():獲取字串當中含有的字元個數,拿到字串長度。
public string concat(string str):將當前字串和引數字串拼接成為返回值新的字串。
public char charat(int index):獲取指定索引位置的單個字元。(索引從0開始。)
public int indexof(string str):查詢引數字串在本字串當中首次出現的索引位置,如果沒有返回-1值。
*/public class demo02stringget
}
字串獲取相關方法
public intlength 獲取字串中含有的字元個數,拿到字串長度。public string concat string str 將當前字串和引數字串拼接成為返回值新的字串。public char charat int index 獲取指定索引位置的單個字元 索引從0開始 public in...
字串的獲取相關方法
public int length 獲取字串字元數 int len dwdadaa length public string concat string str 拼接字串 string str1 hello string str2 world string str3 str1.concat str2...
字串相關方法
字串相關方法使用示例1 public class stringtest 字串相關方法使用示例2 public class stringtest 常用方法總結 char charat int index 返回指定索引處的 char 值。boolean equals object anobject 比較...