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 7650107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:10:02+00:00 2026-05-31T11:10:02+00:00

This was asked in an interview: Given in any string, get me the first

  • 0

This was asked in an interview:

Given in any string, get me the first occurence of an integer.

For example

Str98 then it should return 98

Str87uyuy232 — it should return 87

I gave the answer as loop through the string and compared it with numeric characters, as in

if ((c >= '0') && (c <= '9'))

Then I got the index of the number, parsed it and returned it. Somehow he was not convinced.
Can any one share the best possible solution?

  • 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-31T11:10:04+00:00Added an answer on May 31, 2026 at 11:10 am

    There are two issues with this solution.

    1. Consider the test cases – there are 2 characters ‘8’ and ‘7’, and they both form the integer 87 that you should be returning. (This is the main issue)

    2. This is somewhat pedantic, but the integer value of the character ‘0’ isn’t necessarily less than the value of ‘1’, ‘2’, etc. It probably almost always is, but I imagine interviewers like to see this sort of care. A better solution would be

      if (Character.isDigit(c)) { … }

    There are plenty of different ways to do this. My first thought would be:

    int i = 0;
    while (i < string.length() && !Character.isDigit(string.charAt(i))) i++;
    int j = i;
    while (j < string.length() && Character.isDigit(string.charAt(j))) j++;
    return Integer.parseInt(string.substring(i, j)); // might be an off-by-1 here
    

    Of course, as mentioned in the comments, using the regex functionality in Java is likely the best way to do this. But of course many interviewers ask you to do things like this without libraries, etc…

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

Sidebar

Related Questions

I was asked this question during phone interview. Given two strings find the minimal
Recently in a job interview I was asked this following question (for Java): Given:
I saw this in an interview question , Given a sorting order string, you
I was recently asked this interview question: How to retrieve the first 5 items
This question was asked at interview. Say I have a contract. [ServiceContract] public interface
This was the question asked in interview. Can we call one constructor from another
I was asked this question in a job interview. The interviewer and I disagreed
I was asked this question during an interview. They're both O(nlogn) and yet most
I was asked this question in a job interview, and I'd like to know
Recently I was asked this during a job interview. I was honest and said

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.