Java tutorial
import java.io.StringReader; import java.util.Scanner; public class Main { public static void main(String[] args) { String s = "java2s.com 1 + 1 = 2.0 true "; Scanner scanner = new Scanner(new StringReader(s)); System.out.println(scanner.nextLine()); // change the radix of the scanner scanner.useRadix(32); // display the new radix System.out.println(scanner.radix()); scanner.close(); } }