Is there a better, more elegant (and/or possibly faster) way than
boolean isNumber = false; try{ Double.valueOf(myNumber); isNumber = true; } catch (Nu
I would use the Jakarta commons-lang, as always ! But I have no idea if their implementation is fast or not. It doesnt rely on Exceptions, which might be a good thig performance wise ...