Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Thread: String to Int

    by Norm
    Replies
    16
    Views
    1,903

    Re: String to Int

    What is the word for that base? Hexadecimal for 16. My latin is too old.
  2. Thread: String to Int

    by Norm
    Replies
    16
    Views
    1,903

    Re: String to Int

    I read the question as: How to convert the String "HI" to an int value.
    Try this: System.out.println("HI=" + Integer.parseInt("HI", 26)); // HI=460
  3. Thread: String to Int

    by Norm
    Replies
    16
    Views
    1,903

    Re: String to Int

    If you want to convert some int values to single character Strings and then concatenate them.
    If the int values can be cast to char, the String class has a constructor to create a String.
    Then use...
Results 1 to 3 of 3