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(' ', '-');

!@#$%ing mondays. – Matt Ball Mar 10 '11 at 16:33