New String.isNumeric() function in Java 1.6 ?

U

Ulf Meinhardt

As far as I heard Sun has finally implemented something like a String.inNumeric()
function in Java 1.6 (To detect if a string is numeric).

Is his true?

If not: Is there another way to find this out WITHOUT a try catch clause like

public boolean isInteger( String input ) {
try{
Integer.parseInt( input );
return true; }
catch( Exception ) {
return false; } }

I would appreciate a one-liner.

Ulf
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top