Browse - programming tips - java is a string all hexDate: 2010aug31 Language: Java Q. How can I test if a string is all hexadecimal characters? A. There are many ways but this seems pretty nice: boolean isAllHex(String s) { return s.matches("\\p{XDigit}+"); }
Add a commentSign in to add a comment | Advertisements:
|