package main import ( "regexp" ) func isNumeric(s string) bool { match, _ := regexp.MatchString("^[0-9]+$", s) return match }