Java tutorial
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(s); while (scanner.hasNext()) { // if the next is byte, print found and the byte if (scanner.hasNextByte()) { System.out.println("Found :" + scanner.nextByte()); } System.out.println("Not Found :" + scanner.next()); } scanner.close(); } }