Here you can find the source of fromBase36(String base36)
Takes a Base 36 String and returns the Base 10 Integer equivalent
Parameter | Description |
---|---|
base36 | a parameter |
public static int fromBase36(String base36)
//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); } }