String類中一些常用的函式

2022-05-02 20:30:09 字數 523 閱讀 9289

1 charat(index) : 通過他的索引來獲取元素

@test

public void test1(){

string a="dfjkdjfd134";

for(int i=0;i2  indexof(string s) : 返回當前字串的索引,字串索引的位置從0開始

indexof(string s,int startpoint) 方法是從當前字串的startpoint位置開始索引字串s

string tom="

i am a good cat

"indexof(string

;tom.indexof("a

"); //

值是2tom.indexof("

good

",2); //

值是7tom.indexof("

a",7); //

值是13

tom.index.of("

w",2); //

值是-1

string類一些常用函式用法

insert string的成員函式insert有以下多種過載 string insert int p0,const char s 在p0位置插入字串s string insert int p0,const char s,int n 在p0位置插入字串s的前n個字元 string insert in...

js as中一些常用的函式

string arr.slice start,length start 0時,從最後乙個往前找,此時不需要length var arr 0 1,2 3,4 5,6 7,8 9 arr.slice 0 6 0,1,2,3,4,5 arr.slice 3 7,8,9 var obj var arr ar...

string類的一些成員函式

1 const char data data 函式返回指向自己的第乙個字元的指標.由於data 函式返回的是const char 所以不能直接通過指標修改返回的字串的值,如果要修改,必須把型別轉化為char 2 const char c str c str 函式返回乙個指向正規c字串的指標,內容與本...