Eu tenho um String chamado persons.name
Quero substituir o DOT .
por, /*/
ou seja, minha saída serápersons/*/name
Eu tentei este código:
String a="\\*\\";
str=xpath.replaceAll("\\.", a);
Estou recebendo StringIndexOutOfBoundsException.
Como faço para substituir o ponto?
xpath.replaceAll("\\\\.", "/*/")
?