Java Base Convert fromBase36(String base36)

Here you can find the source of fromBase36(String base36)

Description

Takes a Base 36 String and returns the Base 10 Integer equivalent

License

Open Source License

Parameter

Parameter Description
base36 a parameter

Return

base10 Integer

Declaration

public static int fromBase36(String base36) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**// w  w  w  .j a va2  s  .  co  m
     * <p>Takes a Base 36 String and returns the Base 10 Integer equivalent</p>
     * @param base36
     * @return base10 Integer
     */
    public static int fromBase36(String base36) {
        return Integer.parseInt(base36, 36);
    }
}

Related

  1. fromBase10(final long base10)
  2. fromBase16(String data)
  3. fromBase16toByteArray(String bytes)
  4. fromBase16toIntArray(String bytes)
  5. fromBase26(String number)
  6. fromBase36(String base36Number)
  7. fromBase58(String input)
  8. fromBase62(String base62Number)