Java tutorial
//package com.java2s; public class Main { public static boolean isNumeric(String s) { try { Double.parseDouble(s); } catch (NumberFormatException nfe) { return false; } return true; } }