In Java there is a method splitByCharacterType that takes a string, for example 0015j8*(
, and split it into \"0015\",\"j\",\"8\",\"*\",\"(\"
. Is there
I don't think that such method exist. You can follow steps as below to create your own utility method:
Define strings with all your character types e.g.
string numberString = "0123456789";
string specialChars = "~!@#$%^&*(){}|\/?";
string alphaChars = "abcde....XYZ";