J'ai une chaîne appelée persons.name
Je veux remplacer le DOT .
par /*/
ie ma sortie serapersons/*/name
J'ai essayé ce code:
String a="\\*\\";
str=xpath.replaceAll("\\.", a);
Je reçois StringIndexOutOfBoundsException.
Comment remplacer le point?
xpath.replaceAll("\\\\.", "/*/")
?