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

How can I replace String in xml ..

I've

<schema>src/main/castor/document.xsd</schema>

I need to replace to

<schema>cs/src/main/castor/document.xsd</schema>

If I use simple , xmlInStr is the string form of xml document

xmlInStr.replaceAll(
   "src/main/castor/GridDocument.xsd",    
   "correspondenceCastor/src/main/castor/GridDocument.xsd"
); 

I Tried replace instead ,

xmlInStr.replace("src/main/castor/GridDocument.xsd".toCharArray().toString(), "correspondenceCastor/src/main/castor/GridDocument.xsd".toCharArray().toString());

it's not working . any clues

Managed like this

int indx = from.indexOf(from); xmlInStr = xmlInStr.substring(0,indx) + to + xmlInStr.substring(indx + from.length());

share|improve this question

4 Answers

up vote 1 down vote accepted

You can use repalce or replaceAll. Anyway you have to use the value returned by this method. The method does not modify the string itself because String class is immutable.

share|improve this answer
You are correct , I missed the basic ! – srinannapa Dec 14 '10 at 9:21

String.replaceAll takes a regular expression as the first argument. Use replace instead.

share|improve this answer

You use an XML parser to parse and manipulate XML, don't try and use regular expression based string replacement mechanisms it will not work and will only bring pain and suffering.

share|improve this answer

Both replace() and replaceAll() don't actually replace anything in the string (strings are immutable). They return a new string instead, but you just discard the return value, that's why you don't see it anywhere. By the way, that .toCharArray().toString() looks completely useless to me. A character literal is already a full-fledged String.

But you really should use an XML parser instead. Unless your task is very simple and you're absolutely sure that you don't replace anything that shouldn't be replaced.

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.