$show=/label

Java Program To Add All Numbers In A String (Consecutive Digits Considered As One Number)

SHARE:

A Quick Java Program To Add All Numbers In A String (Consecutive Digits Considered As One Number) and example code.

1. Introduction


In this tutorial, We will learn how to write a java program to add all numbers in a string. Here the ∫. Already shown a program on how to sum all digits in the string (in this case each digit considered as one number. In other words, taking into consideration each individual digit).


Examples of samples:

Exmaple 1:

Input 1: java10program2
Output 1: 12

Exmaple 2:

Input 2: hello100world200
Output 2: 300

Exmaple 3:

Input 3: nodigits
Output 3: 0


Java Program To Add All Numbers In A String


2. Java Example Program to add all numbers in a string


This program is similar to calculating the sum of each digit in the string. But the trick is in the question is multiple consecutive digits are considered as one number.

Logic to understand:


Logic is to run the loop from index 0 to length-1 and check each char whether is numeric or not. If numeric then add that character into a temp string. If the next character is numeric then again add this char to the exiting temp string. If next char is not numeric then add the number inside the temp string to the outputSum. Continue the same process untill it reaches the end of the string.

Let us take a look at the java program below.

package com.javaprogramto.engineering.programs;

public class StringAddAllConsecutiveNumbers {

    public static void main(String[] args) {

        // Input 1
        String input1 = "java10program2";
        int output1 = addAllConsecutiveNumbersInString(input1);
        System.out.println("Sum of all numbers in string " + input1 + " is " + output1);

        // Input 2
        String input2 = "hello100world200";
        int output2 = addAllConsecutiveNumbersInString(input2);
        System.out.println("Sum of all numbers in string " + input2 + " is " + output2);

        // Input 3

        String input3 = "nodigits";
        int output3 = addAllConsecutiveNumbersInString(input3);
        System.out.println("Sum of all numbers in string " + input3 + " is " + output3);

    }

    private static int addAllConsecutiveNumbersInString(String inputString) {

        int length = inputString.length();

        // initializing the output to 0. If no digit is found in the string then defalut
        // value 0 is returned.
        int digitsSum = 0;
        String temp = "0";

        for (int i = 0; i < length; i++) {

            char character = inputString.charAt(i);
            boolean isDigit = Character.isDigit(character);

            // adding the digit to the current digitSum value.
            if (isDigit) {
                temp = temp + character;
            } else {

                // converting the temp string to int and adding the numbers
                digitsSum = +Integer.parseInt(temp);

                // resetting to number 0
                temp = "0";
            }

        }

        // this is to handle the scenarios where the input string ends with numbers.
        digitsSum = +Integer.parseInt(temp);

        return digitsSum;
    }
}

Output:

Sum of all numbers in string java10program2 is 2
Sum of all numbers in string hello100world200 is 200
Sum of all numbers in string nodigits is 0

This program works for all types of inputs but whereas in the geekforgeeks program will not work if the input starts with non-numeric like "geeks4geeks".

3. Exception Thrown


When I have tried this program the first time, i faced the below problems. All the times i have been receiving this exception.
NumberFormatException is thrown because of it can not convert empty space "" to int type.
Finally, made the default temp value to "0".


Exception in thread "main" java.lang.NumberFormatException: For input string: ""
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Integer.parseInt(Integer.java:592)
    at java.lang.Integer.parseInt(Integer.java:615)
    at com.javaprogramto.engineering.programs.StringAddAllConsecutiveNumbers.addAllConsecutiveNumbersInString(StringAddAllConsecutiveNumbers.java:44)
    at com.javaprogramto.engineering.programs.StringAddAllConsecutiveNumbers.main(StringAddAllConsecutiveNumbers.java:9)

4. Conclusion


In this article, You have learned a java program to sum all long numbers present in the given string.

If you have any questions, please leave them in the comments section.

COMMENTS

BLOGGER

About Us

Author: Venkatesh - I love to learn and share the technical stuff.
Name

accumulo,1,ActiveMQ,2,Adsense,1,API,37,ArrayList,18,Arrays,24,Bean Creation,3,Bean Scopes,1,BiConsumer,1,Blogger Tips,1,Books,1,C Programming,1,Collection,8,Collections,37,Collector,1,Command Line,1,Comparator,1,Compile Errors,1,Configurations,7,Constants,1,Control Statements,8,Conversions,6,Core Java,149,Corona India,1,Create,2,CSS,1,Date,3,Date Time API,38,Dictionary,1,Difference,2,Download,1,Eclipse,3,Efficiently,1,Error,1,Errors,1,Exceptions,8,Fast,1,Files,17,Float,1,Font,1,Form,1,Freshers,1,Function,3,Functional Interface,2,Garbage Collector,1,Generics,4,Git,9,Grant,1,Grep,1,HashMap,2,HomeBrew,2,HTML,2,HttpClient,2,Immutable,1,Installation,1,Interview Questions,6,Iterate,2,Jackson API,3,Java,32,Java 10,1,Java 11,6,Java 12,5,Java 13,2,Java 14,2,Java 8,128,Java 8 Difference,2,Java 8 Stream Conversions,4,java 8 Stream Examples,12,Java 9,1,Java Conversions,14,Java Design Patterns,1,Java Files,1,Java Program,3,Java Programs,114,Java Spark,1,java.lang,4,java.util. function,1,JavaScript,1,jQuery,1,Kotlin,11,Kotlin Conversions,6,Kotlin Programs,10,Lambda,2,lang,29,Leap Year,1,live updates,1,LocalDate,1,Logging,1,Mac OS,3,Math,1,Matrix,6,Maven,1,Method References,1,Mockito,1,MongoDB,3,New Features,1,Operations,1,Optional,6,Oracle,5,Oracle 18C,1,Partition,1,Patterns,1,Programs,1,Property,1,Python,2,Quarkus,1,Read,1,Real Time,1,Recursion,2,Remove,2,Rest API,1,Schedules,1,Serialization,1,Servlet,2,Sort,1,Sorting Techniques,8,Spring,2,Spring Boot,23,Spring Email,1,Spring MVC,1,Streams,31,String,61,String Programs,28,String Revese,1,StringBuilder,1,Swing,1,System,1,Tags,1,Threads,11,Tomcat,1,Tomcat 8,1,Troubleshoot,26,Unix,3,Updates,3,util,5,While Loop,1,
ltr
item
JavaProgramTo.com: Java Program To Add All Numbers In A String (Consecutive Digits Considered As One Number)
Java Program To Add All Numbers In A String (Consecutive Digits Considered As One Number)
A Quick Java Program To Add All Numbers In A String (Consecutive Digits Considered As One Number) and example code.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZxoZv2L5nX4I5Ycotctzy6PqUFm_OEPfa7Z81qpyqr_ghlZ0OzWzYyks09BkkLaSHijtnU2cOex4eoOdnrsN9dcGT0wluIMoPgSEL7oB619RDduoO63PtZ7JyN8xQHqeJHnpBYVz6j3I/s640/Java+Program+To+Add+All+Numbers+In+A+String+.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZxoZv2L5nX4I5Ycotctzy6PqUFm_OEPfa7Z81qpyqr_ghlZ0OzWzYyks09BkkLaSHijtnU2cOex4eoOdnrsN9dcGT0wluIMoPgSEL7oB619RDduoO63PtZ7JyN8xQHqeJHnpBYVz6j3I/s72-c/Java+Program+To+Add+All+Numbers+In+A+String+.png
JavaProgramTo.com
https://www.javaprogramto.com/2019/12/java-program-string-add-numbers-consecutive-digits.html
https://www.javaprogramto.com/
https://www.javaprogramto.com/
https://www.javaprogramto.com/2019/12/java-program-string-add-numbers-consecutive-digits.html
true
3124782013468838591
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content