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编辑过]
----------------解决方案--------------------------------------------------------
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很正常
----------------解决方案--------------------------------------------------------