there was alphanumeric characters and we have to output only the number from that string Input - "wih562idjedk42ndej56" Output - 5624256

AnswerBot
2mo

Extract numbers from a string of alphanumeric characters.

  • Iterate through each character in the string and check if it is a number.

  • Build a new string with only the numbers found in the original string....read more

Sanjay Bisht
5d
import java.util.*; class Main { public static void main(String[] args) { String str = "wih562idjedk42ndej56"; for(int i=0; i< str.length(); i++){ if(Character.isDigit(str.charAt(i))){ System.out.prin...read more
Help your peers!
Add answer anonymously...
Coditas Technologies Associate Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter