[![While executing a command i am getting output with "" how can I supress those symbol in my output][1]][1]
[1]: https://i.stack.imgur.com/UgZDI.png
//OutputStream out = channel.getOutputStream();
out.write(3); // send CTRL-C
out.flush();
System.out.println("exit1");
if (expect.expect("$") > -1) {
System.out.println("finding $");
contt = (expect.before);
if (contt != null && contt != "") {
output=contt.replaceAll("", " ");
System.out.println("afterline"+output);
} else {
contt="Error in Top Check";
System.out.println("Error in Top check");
}
//I am trying to replaceAll this string.
//I am running command though jsch and getting the following output which i have shared as screenshot.I need to display itby removing the" " from the output. Need help in it