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: Return the sum of the digits present in the given string

Java String: Exercise-95 with Solution

Write a Java program to return the sum of the digits present in the given string. If there is no digits the sum return is 0.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public int sumOfDigits(String stng) 
{
  int l = stng.length();
  int sum = 0;
  for (int i = 0; i < l; i++) 
  {
    if (Character.isDigit(stng.charAt(i))) 
	{
      String tmp = stng.substring(i,i+1);
      sum += Integer.parseInt(tmp);
    }
  }
  return sum;
}


public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "ab5c2d4ef12s";
      System.out.println("The given string is: "+str1);
      System.out.println("The sum of the digits in the string is: "+m.sumOfDigits(str1));
	  }
}

Sample Output:

The given string is: ab5c2d4ef12s
The sum of the digits in the string is: 14

Pictorial Presentation:

Java String Exercises: Return the sum of the digits present in the given string.If there is no digits the sum return is 0

Flowchart:

Flowchart: Java String Exercises - Return the sum of the digits present in the given string.If there is no digits the sum return is 0

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to find the longest mirror image string at the both ends of a given string.
Next: Write a Java program to create a new string after removing a specified character from a given string except the first and last position.

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