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

Possible Duplicate:
How do I replace a character in a string in Java?

how can i replace all occurences of '\x0d' in a Java String??

  • I have tried myString.replaceAll("\x0d", "")... does not works

and all the answers below does not work have tried that already

OMG :)


Apologies for the crap guys.

share|improve this question
What have you tried so far? Show some code. – Matt Ball Sep 27 '11 at 0:29
3  
By "\x0d" do you mean the character with ASCII code 13 or the string consisting of the four characters '\', 'x', '0' and 'd'? – Mark Byers Sep 27 '11 at 0:31
3  
(Honestly, you should be ashamed of yourself for not going to the online reference for String and scanning it for any function that might do the job. This is basic stuff that any first-week programming student should understand how to do.) – Hot Licks Sep 27 '11 at 0:32
@anonymous Rude much? – fireshadow52 Sep 27 '11 at 0:49
1  
@anonymous: Your question is poorly asked. Had you mentioned what you had already tried, you'd be getting much better answers. Don't be lazy crafting a good question... – Juan Mendes Sep 27 '11 at 1:06
show 12 more comments

marked as duplicate by John Flatness, ennuikiller, tchrist, K-ballo, Matt Ball Sep 27 '11 at 1:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

http://download.oracle.com/javase/1.4.2/docs/api/java/lang/String.html

String str = "Testing\x0dHere";
System.out.println(str.replace('\x0d', ' '))
share|improve this answer
doesn't works !!! – anonymous Sep 27 '11 at 0:49
True, '\x0d1' isn't a valid Java escape sequence. But replace that with \r (the escape for carriage return) and it works. As it does with \015, the octal escape sequence. (There is no hex escape sequence for Java strings -- the Unicode sequence \Uxxxx causes substitution BEFORE parsing, which kinda breaks things in this scenario.) – Hot Licks Sep 27 '11 at 1:24
I know it didn't work, but considering how little effort there was into the question, I thought this was a good enough answer :) – Juan Mendes Sep 27 '11 at 18:30

I believe you want this:

String test = "\r".replace("\r", "princess");
System.out.println(test);  // princess

ASCII 13 is Carriage Return

share|improve this answer

Escape the backslash:

myString = myString.replace("\\x0d", "whateverYouWantToReplaceWith")

See it working on ideone.

share|improve this answer

You may consider trying String.replace.

share|improve this answer

Just a guess -- String.replace? There's a character version and a "character sequence" version.

share|improve this answer
myString.replaceAll("\\x0d","whateverYouWantToReplaceWith");
share|improve this answer
1  
So you and Mark figure he intends to replace the CHARACTERS "\x0D"? Yep, in that case your examples are good ones. – Hot Licks Sep 27 '11 at 1:28
@Daniel R Hicks: Our answers are not the same. This uses replaceAll, which treats the \\x0d as regular expression, where it means the ASCII character with code 13. ideone.com/7XRp3 – Mark Byers Sep 27 '11 at 6:19
Ah, good point! – Hot Licks Sep 27 '11 at 11:36

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