c++的简单粗暴。哈哈哈。转换成string,使用replace方法,在转换回去。
class Solution { public: void replaceSpace(char *str,int n) { string s = str; for (int i = 0; i < s.size(); ++i) { if (s[i] == ' ') { s.replace(i, 1, "%20"); } } strcpy(str, s.c_str()); } };
c++的简单粗暴。哈哈哈。转换成string,使用replace方法,在转换回去。
class Solution { public: void replaceSpace(char *str,int n) { string s = str; for (int i = 0; i < s.size(); ++i) { if (s[i] == ' ') { s.replace(i, 1, "%20"); } } strcpy(str, s.c_str()); } };