基本操作问题(字符串)

时间:2014-04-09 19:46:50

标签: java string netbeans

我是java的新手,据我所知,这很简单,但我不记得我需要应用的synthax才能获得下一步:

我有以下字符串:

Random sentence with a few words

我想要一个合适的合成器,它返回以下内容:

Random-sentence-with-a-few-words

感谢。

2 个答案:

答案 0 :(得分:3)

使用String#replace(char, char)

myRandomStringWithSpaces.replace(' ', '-');

编辑:使用字符代替链接的javadoc

答案 1 :(得分:0)

您可以使用替换

Use replace() to replace specifics words in your string:
MyString.replace(' ', '-');

在这里,您需要指定2个字符(原始值和第二个参数,要替换的值)

您可以阅读更多相关信息here