У мене називається рядок persons.name
Я хочу замінити DOT .
на, /*/
тобто мій результат будеpersons/*/name
Я спробував цей код:
String a="\\*\\";
str=xpath.replaceAll("\\.", a);
Я отримую StringIndexOutOfBoundsException.
Як замінити крапку?
xpath.replaceAll("\\\\.", "/*/")
?