Here you can find the source of isNumeric(String str)
Parameter | Description |
---|
public static boolean isNumeric(String str)
//package com.java2s; //License from project: Apache License import java.util.regex.Pattern; public class Main { public static boolean isNumeric(String str) { Pattern pattern = Pattern.compile("[0-9]*"); return pattern.matcher(str).matches(); }// w w w. j a v a 2s . c o m }