I have to replace the content of this xml string through java
<My:tag>value_1 22
value_2 54
value_3 11</My:tag>
Please correct me if I am wrong. I want to replace substring in a string in java. And I want to use String.replace(CharSequence target, CharSequence replacement) method. I do not use ...