List of usage examples for java.util Scanner nextBigInteger
public BigInteger nextBigInteger()
From source file:Main.java
public static void main(String[] args) { String s = "java2s.com 1 + 1 = 2.0 true"; Scanner scanner = new Scanner(s); while (scanner.hasNext()) { // if the next is BigInteger, print "Found" and the Integer if (scanner.hasNextBigInteger()) { System.out.println("Found :" + scanner.nextBigInteger()); }/*from w w w . j a v a 2 s . com*/ // if a BigInteger is not found, print "Not Found" and the token System.out.println("Not Found :" + scanner.next()); } scanner.close(); }