String 常用方法

2022-08-27 05:00:11 字數 550 閱讀 1016

字串的常用方法:

1,求字串的長度

string s = "hello world!";

int len = s.length();

2.獲取字串中指定位置的字元

s.charat(0); 這樣會得到 h 字元

3.字串的拼接

s.concat("hello china"); 相當於 "hello world!" + "hello china"

4.字串轉小寫 tolowercase()

5.字串轉大寫touppercase()

6.字串替換s.replace("hello", "hi")

7.字串去除首尾空格 s.trim()

8.字串是否是以指定的字串開頭

s.statwith("hello");

9.字串是否是以指定的字元結尾

s.endwith("world");

10. 字串中是否包含指定字元

s.contains("h")

11.字串按照指定的字元分割

s.split()

String常用方法

1,startswith判斷是否以某字串開始 2,endswith判斷是否以某字串結尾 3,contains判斷是否包含另乙個字串 4,substring取出指定位置的字串 5,charat找到指定位置的字元 6,indexof正向找到指定字元的位置 7,lastindexof反向找到指定字元的位置...

string 常用方法

例項化方法建立字串 instancetype initwithstring nsstring astring instancetype initwithformat nsstring format,instancetype initwithutf8string const char bytes 類方...

String常用方法

public class teststring string str hello string的方法 1 跟字元陣列有關的方法 物件的長度 char array str.tochararray 把string物件轉換成char陣列 根據下標得到string物件該下標位置的字元 l 得到某個字元在st...