How can I rebuild the string from the code below? I spilt the string to remove the "," now I would like to rebuild it.
String relativeDN = "cn=abc,dn=xyz,ou=abc/def";
String[] stringData = relativeDN.split(",");
for (String stringoutput : stringData){
System.out.println(stringoutput);
}
String escapedSearchFilter =
}
}