Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 300455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:54:56+00:00 2026-05-12T06:54:56+00:00

In Java is there a way to find out if first character of a

  • 0

In Java is there a way to find out if first character of a string is a number?

One way is

string.startsWith("1")

and do the above all the way till 9, but that seems very inefficient.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T06:54:56+00:00Added an answer on May 12, 2026 at 6:54 am
    Character.isDigit(string.charAt(0))
    

    Note that this will allow any Unicode digit, not just 0-9. You might prefer:

    char c = string.charAt(0);
    isDigit = (c >= '0' && c <= '9');
    

    Or the slower regex solutions:

    s.substring(0, 1).matches("\\d")
    // or the equivalent
    s.substring(0, 1).matches("[0-9]")
    

    However, with any of these methods, you must first be sure that the string isn’t empty. If it is, charAt(0) and substring(0, 1) will throw a StringIndexOutOfBoundsException. startsWith does not have this problem.

    To make the entire condition one line and avoid length checks, you can alter the regexes to the following:

    s.matches("\\d.*")
    // or the equivalent
    s.matches("[0-9].*")
    

    If the condition does not appear in a tight loop in your program, the small performance hit for using regular expressions is not likely to be noticeable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to find out whether a Java function (or a constructor)
Is there a way to find out if the type is native from java
Is there any way, from within a Java program compiled by gcj, to find
is there a way to call java me application out of Symbian's C++ app?
is there some way to terminate all (Java) applications launched with Eclipse at once?
Is there any way to find out the file system format of a disk
In Java is there a way to extract the value of an unknown subset
Is there a way using Java to over-ride the browser authentication dialog box when
Is there a way to make a java.awt.Font strike through?
Is there a way in Java to ask the system to get control over

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.