Saturday 24 January 2015

Check ia string is hexadecimal number or not


Check if a String is Hexadecimal number or not in java


  public boolean isHexNumber(String){
       boolean flag;
       try {
           int t = Integer.parseInt(value, 16);
            flag = true;
       } catch (NumberFormatException e) {
            flag = false;
       }
       return flag;
}
   



 Related Posts:


Check a string value is Integer or not in java. (Solution).

Check ia string is hexadecimal number or not (Solution).

Generate Combination in java (Solution).

Generate permutation of string(Solution).

Reverse string in java (Solution).

Find duplicate characters with occurrences in a string(Solution).

Permutation of a number(Soluion).

Split the String in java(Solution).

Convert string into number in java(Solution).

Swap two strings without using any variable(Solution).

Get a number from a string in java(Solution).

Add Two Big Number In Java(Solution).

Expand String(Solution).

Reverse String (Solution).

No comments:

Post a Comment