8 lines
164 B
Text
8 lines
164 B
Text
def isNumeric(specimen :String) {
|
|
try {
|
|
<import:java.lang.makeDouble>.valueOf(specimen)
|
|
return true
|
|
} catch _ {
|
|
return false
|
|
}
|
|
}
|