Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Calculate the sum of the numbers appear in a given string

Java String: Exercise-89 with Solution

Write a Java program to calculate the sum of the numbers appear in a given string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public int sumOfTheNumbers(String stng) 
{
  int l = stng.length();
  int sum = 0;
  String temp = "";
  for (int i = 0; i < l; i++) 
  {
    if (Character.isDigit(stng.charAt(i))) 
	{
      if (i < l-1 && Character.isDigit(stng.charAt(i+1))) 
	  {
        temp += stng.charAt(i);
      }
      else 
	  {
        temp += stng.charAt(i);
        sum += Integer.parseInt(temp);
        temp = "";
      }
    }
  }
  return sum;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "it 15 is25 a 20string";
      System.out.println("The given string is: "+str1);
      System.out.println("The sum of numbers in the string is: "+m.sumOfTheNumbers(str1));
	  }
}

Sample Output:

The given string is: it 15 is25 a 20string
The sum of numbers in the string is: 60

Pictorial Presentation:

Java String Exercises: Calculate the sum of the numbers appear in a given string

Flowchart:

Flowchart: Java String Exercises -Calculate the sum of the numbers appear in a given string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to return a string where every appearance of the lowercase word 'is' has been replaced with'is not'.
Next: Write a Java program to check the number of appearances of the two substrings appear anywhere in the string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe