Returns true if the argument contains a number : String Parser « Data Type « Java






Returns true if the argument contains a number

      
/*
    JSPWiki - a JSP-based WikiWiki clone.

    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.    
 */

import java.security.SecureRandom;
import java.util.Random;

public class StringUtils
{


  /**
   *  Returns true, if the argument contains a number, otherwise false.
   *  In a quick test this is roughly the same speed as Integer.parseInt()
   *  if the argument is a number, and roughly ten times the speed, if
   *  the argument is NOT a number.
   *
   *  @since 2.4
   *  @param s String to check
   *  @return True, if s represents a number.  False otherwise.
   */

  public static boolean isNumber( String s )
  {
      if( s == null ) return false;

      if( s.length() > 1 && s.charAt(0) == '-' )
          s = s.substring(1);

      for( int i = 0; i < s.length(); i++ )
      {
          if( !Character.isDigit(s.charAt(i)) )
              return false;
      }

      return true;
  }
}

   
    
    
    
    
    
  








Related examples in the same category

1.Parse Comma Delimited List
2.Parse Fraction
3.Parse String to array of Strings while treating quoted values as single element
4.Parse a method signature or method call signature
5.Parse basic types
6.Decodes a String with Numeric Character References
7.Normalize a SQL identifer, up-casing if , and handling of (SQL 2003, section 5.2).
8.Convert a String to an int, returning zero if the conversion fails.
9.Parsing primitives from String's without creating any objects
10.Checks whether the String a valid Java number.
11.Check whether the given String has actual text.