字符串中的替换字符

时间:2011-05-31 01:06:03

标签: java string

我正在尝试创建一个字符串,用于替换所有空格的*,但我无法确切地知道如何做到这一点。有人可以帮忙吗?

String phrase = new String ("This is a String test."); 

4 个答案:

答案 0 :(得分:10)

假设它是Java,您可以使用String.replace方法:

phrase = phrase.replace(' ', '*');

答案 1 :(得分:4)

Mystring = Mystring.Replace('','*');

答案 2 :(得分:1)

String phrase = new String ("This is a String test."); 

/*Replace the Spaces with the *, */

String finalString = phrase.Replace(' ', '*');    

System.out.println(finalString);

答案 3 :(得分:1)

不要使用 new 运算符创建字符串。在Java中,String是一个特殊的类。所以

    String phrase = "This is a String test.";

就够了。使用 new 运算符创建字符串将创建两次字符串。