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(' ', '-');
Use the replaceAll() method to replace spaces with dashes in a string, e.g. str. replaceAll(' ', '-') . The replaceAll method will return a new string where all spaces are replaced by dashes. Copied!
To replace a space with a dash in Python, the easiest way is to use the Python built-in string replace() function. string_with_spaces = "This is a string." string_with_dashes = string_with_spaces. replace(" ","-") print(string_with_dashes) #Output: This-is-a-string.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With