I have a XML which has some non printable ascii characters like ¢ìÂíÄ . When I try to remove it using replaceAll("([^\p{ASCII}])","") I'm getting result as Ç ;é ; something like this for the non printable ascii characters. But I need to remove these characters completely.
Please anyone guide me on this Thanks in advance.