Search:

Type: Posts; User: helloworld922

Search: Search took 0.09 seconds.

  1. Re: need to know if the object is a number or character

    But then you have to get Apache :P I prefer to start with just the standard Java API. Besides, learning regular expressions is a good idea anyways.
  2. Re: need to know if the object is a number or character

    I'd recommend looking through the Sun Regex Tutorials, or any other tutorials dealing with regular expressions to understand how they work. Here's a regex I've used that picks up pretty much every...
  3. Re: need to know if the object is a number or character

    Can these numbers be decimal numbers? Or are they guaranteed to be integers? If they are integers, you can just use the Character.isDigit methods. Otherwise, it's easiest to use the Regex class and...
Results 1 to 3 of 3