乙個小夥伴的筆試題,非常簡單,題目是編寫乙個zjbmi_find函式,實現傳入字串的'z','i','b','m','i'字元依次排到最前面。如:
輸入:
zjbmi is a zzleading brain-machine inte***ce company in the world";輸出:
看了下就是字串刪除與替換,他交卷了,後面沒有做,晚上抽空寫了下,就暴力寫下就行了。
#include #include #include #include using namespace std;
int main()
,,,,};
string::iterator it;
for(it=input.begin();it!=input.end();it++)else if(*it=='j')else if(*it=='b')else if(*it=='m')else if(*it=='i')
}cout<
while(mp['z']--)
while(mp['j']--)
while(mp['b']--)
while(mp['m']--)
while(mp['i']--)
res+=input;
cout<
return 0;
}
字串擷取指定位置前後字串
1 rangeofstring 擷取指定字串的長度 2 substringtoindex 7 擷取從0 索引到指定索引 7 長度的字串 3 substringfromindex 9 擷取從指定索引 9 到末尾長度的字串 4 nsrange range nsmakerange 0,7 擷取從指定索引 ...
指定位置輸出字串
習題11 5 指定位置輸出字串 20分 本題要求實現乙個函式,對給定的乙個字串和兩個字元,列印出給定字串中從與第乙個字元匹配的位置開始到與第二個字元匹配的位置之間的所有字元。char match char s,char ch1,char ch2 函式match應列印s中從ch1到ch2之間的所有字元...
js字串刪除指定位置字元
js如何去除指定字串 兩種方式可以實現 1 使用replace函式替換 var str hello world str str.replace l 即使用空串替換某乙個字串,則是可以實現去除指定字串功能 2 使用字串分割函式在聚合 var str hello world var items str....