c++ string的詳細用法(14)replace()

string a="1234abcd5678efgh"; string b="ABCD"; 1.在string字符串的某一個位置開始長度爲m的字符被替換另外一個(string)字符串 replace(size_t n,size_t m,const char* str); a.replace(4,3,"替換"); //結果爲 a="1234替換d5678efgh"; replace(size_t
相關文章
相關標籤/搜索