Android examples for java.lang:Character
is char Numeric
//package com.java2s; public class Main { public static boolean isNumeric(char c) { return (c >= '0' && c <= '9'); }//from w ww. j a v a2s . c om }