在编程时我接受了一个字符串......使用将其更改为 char 数组
string.toCharArray()
...并且不得不将其更改回字符串(因为我正在使用递归并且每次都必须将字符串作为参数传递)..如何做到这一点..???
我尝试使用array.toString()
...但它通过了乱码..以@....开头然后我在这里搜索并发现了Arrays.toString()
...但了解到它确实将其转换为字符串但添加了 [] 和 ,.. .我需要原始字符串..如何去做...这是代码的一部分..
public String replace(String str, char ch) {
if(count ==0){
Scanner sc2= new Scanner(System.in);
System.out.println("enter the character to be replaced with ");
c2 =sc2.next().charAt(0);
len=str.length();
}
arr=str.toCharArray();
if(arr[count]==ch){
arr[count]=c2;
}
count++;
str=Arrays.toString(arr); // Problem
if(count<len)
temp=replace(str,ch);
else
temp=str;
return temp;
}