Hello, I would like to know how I make a split to special characters. What I'm trying to do is take away the \ these numbers.
String octa = "454246";
String[] prueba = octa.split("\");
for (int i = 0; i < prueba.length; i++) {
System.out.println(":"+Long.toHexString(Long.parseLong(prueba[i],8)));
}