String string = "004^034556-34";
String[] parts = string.split(Pattern.quote("^"));
If you have a special character then you can use Patter.quote. If you simply have dash (-) then you can shorten the code:
String string = "004-34";
String[] parts = string.split("-");
If you try to add other special character in place of dash (^) then the error will generate ArrayIndexOutOfBoundsException. For that you have to use Pattern.quote
.