Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to replace a space character into a hyphen I have in my string.

String replaceText = "AT AT";
replaceText.replace(' ', '-');

but when I do this, I cannot seem to replace the character. I tried the replaceAll() method and it doesn't work either.

++++++Answer+++++++

sorry my mistake.. the result of late night programming :(

thanks for the answer i cant probably answer all so i will check the first answer

replaceText = replaceText.replace(' ', '-');
share|improve this question
1  
i think the numerous answers below stress Strings are immutable. :) – Brent Worden Mar 10 '11 at 16:24
1  
@Brent: hmmm, maybe I need to make my answer stand out more: bigger, bolder text! – Matt Ball Mar 10 '11 at 16:26
6 more minutes to check an answer.. damn i hate this :( – benjamin lee Mar 10 '11 at 16:29
2  
Sleep deprivation is the #2 source of Stupid Programming Mistakes (SPIs). The #1 source, you ask? !@#$%ing mondays. – Matt Ball Mar 10 '11 at 16:33
haha oh well deadlines deadlines deadlines :( – benjamin lee Mar 10 '11 at 16:35
show 1 more comment

5 Answers

up vote 13 down vote accepted
replaceText = replaceText.replace(' ', '-');

Strings are immutable, they cannot be changed after creation. All methods that somehow modify a string will return a new string with the modifications incorporated.

share|improve this answer

Strings are immutable.

You need to save the value returned by replace(). If you want to replace more than one occurrence, use replaceAll().

String replaceText = "AT AT";
replaceText = replaceText.replaceAll(" ", "-");

As @Mark Peters points out in the comments, replace(Char, Char) is sufficient (and faster) for replacing all occurrences.

String replaceText = "AT AT";
replaceText = replaceText.replace(' ', '-');

In case this fact bothers you: immutability is a Good Thing.

share|improve this answer
Are strings immutable? :P – Rob Hruska Mar 10 '11 at 16:27
@Rob, hmmmmmm... I dunno... probably not? – Matt Ball Mar 10 '11 at 16:28
3  
Probably the are not... but that big-bold message makes me wonder. – Cristian Mar 10 '11 at 16:33
replace(char, char) replaces all occurrences, as does the overload replace(CharSequence, CharSequence). Throwing regexes into the mix by using replaceAll is a step backwards since now you have to think about escaping special characters, and it will be less performant. – Mark Peters Mar 10 '11 at 17:13
it was me, downvote removed now that you fixed it. – Mark Peters Mar 12 '11 at 19:09

The replace and replaceAll methods return a String with the replaced result. Are you using the returned value, or expecting the replaceText String to change? If it's the latter, you won't see the change, because Strings are immutable.

String replaceText = "AT AT";
String replaced = replaceText.replace(' ', '-');

// replaced will be "AT-AT", but replaceText will NOT change
share|improve this answer

The replace method returns a String, so you need to re-assign your string variable i.e.

String replaceText = "AT AT";                         
replaceText = replaceText.replace(' ', '-'); 
share|improve this answer

Strings are immutable. You need to use the return value from replace:

replaceText = replaceText.replace(' ', '-');

HTH

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.