Example usage for java.util Scanner hasNextBigInteger

List of usage examples for java.util Scanner hasNextBigInteger

Introduction

In this page you can find the example usage for java.util Scanner hasNextBigInteger.

Prototype

public boolean hasNextBigInteger(int radix) 

Source Link

Document

Returns true if the next token in this scanner's input can be interpreted as a BigInteger in the specified radix using the #nextBigInteger method.

Usage

From source file:Main.java

public static void main(String[] args) {

    String s = "java2s.com 1 + 1 = 2.0";

    Scanner scanner = new Scanner(s);

    while (scanner.hasNext()) {
        // check if the scanner's next token is a BigInteger with radix 5
        System.out.println(scanner.hasNextBigInteger(4));

        System.out.println(scanner.next());
    }//from  w w  w .jav  a  2s .c  o  m
    scanner.close();
}