boolean isInteger() Method
I am trying to parse a text line.
I would like to pick up the substring after the first period provided the last three characters before the period form an integer. Is there a method to check for integer format or property NaN in a given string. I have looked through Integer, Number and Math Classes....
Thanks in advance.
Qamar A.
> I am trying to parse a text line.
>
> I would like to pick up the substring after the first
> period provided the last three characters before the
> period form an integer. Is there a method to check
> for integer format or property NaN in a given string.
> I have looked through Integer, Number and Math
> Classes....
>
> Thanks in advance.
>
> Qamar A.
Use:
parseInt(String s)
zadoka at 2007-7-14 20:40:18 >
