Saturday 17 January 2015

Get a number from a string in java

         How to get number from a string which contains number : example
                                  string str="123";
                   then get a number  num=123 from string str
    
     int getNumber(String str){
        int i=0;
        int num=0;
        int zeroAscii = (int)'0';
        while (i<str.length()) {
            int charAscii=(int)str.charAt(i);
            num=num*10+(charAscii-zeroAscii);
             i++;
              }   
        return num;
    }



 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