当前位置: 代码迷 >> Java相关 >> replace(char oldChar,char newChar);为什末str.replace('a','b');不好用?
  详细解决方案

replace(char oldChar,char newChar);为什末str.replace('a','b');不好用?

热度:952   发布时间:2007-04-08 11:36:23.0
replace(char oldChar,char newChar);为什末str.replace('a','b');不好用?
replace(char oldChar,char newChar);为什末str.replace('a','b');不好用?
字符串必须是具体的吗?不可以是变量吗?我查了API,只有字符串是具体的例子。

[此贴子已经被作者于2007-4-8 11:38:05编辑过]

搜索更多相关的解决方案: str  char  replace  newChar  oldChar  

----------------解决方案--------------------------------------------------------
import java.util.Scanner;
public class Test
{
public static void main(String[] args)
{
String b;
Scanner scan=new Scanner(System.in);
String str=scan.nextLine();
System.out.println(str);
b=str.replace('a','b');
System.out.println(b);
}
}

字符串不用具体啊。没明白具体意思,我用replace很正常
----------------解决方案--------------------------------------------------------
  相关解决方案