要求:实现方法 replace,能够替换字符串中的某个部分。
具体代码如下:
public class Test1_19 {
public static void main(String[] args) {
String str1 = "efcdef";
String str2 = "ab";
System.out.println(myReplace(str1,"ef",str2));
}
public static String myReplace(String str,String src,String des) {
char[] arr = str.toCharArray();
char[] desArr = des.toCharArray();
int result = str.indexOf(src);
for (int i = 0; i < desArr.length; i++) {
arr[result] = desArr[i];
result++;
}
String res = "";
for (int i = 0; i < arr.length; i++) {
res += arr[i];
}
return res;
}
}
运行结果示例: