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 Exercises: Restore the original string by entering the compressed string with this rule

Java Basic: Exercise-238 with Solution

When character are consecutive in a string , it is possible to shorten the character string by replacing the character with a certain rule. For example, in the case of the character string YYYYY, if it is expressed as # 5 Y, it is compressed by one character.
Write a Java program to restore the original string by entering the compressed string with this rule. However, the # character does not appear in the restored character string.
Note: The original sentences are uppercase letters, lowercase letters, numbers, symbols, less than 100 letters, and consecutive letters are not more than 9 letters.

Input:
Multiple character strings are given. One string is given per line.
Output: The restored character string for each character on one line.

Sample Solution:

Java Code:

import java.util.*;
public class Main 
{
    public static void main(String[] args) 
    {
        Scanner stdIn = new Scanner(System.in);
		    System.out.println("Input the text:");
            String str = stdIn.next();
            for(int i = 0; i < str.length(); ++i)
            {
                if(str.charAt(i) == '#')
                {
                    for(int j = 0; j < (str.charAt(i + 1) - '0'); ++j)
                    {
                        System.out.print(str.charAt(i + 2));
                    }
                    i += 2;
                }
                else
                {
                    System.out.print(str.charAt(i));
                }
            }
            System.out.println();
    }
}

Sample Output:

Input the text:
XY#6Z1#4023
XYZZZZZZ1000023

Pictorial Presentation:

Java exercises: Restore the original string by entering the compressed string with this rule.
Java exercises: Restore the original string by entering the compressed string with this rule.

Flowchart:

Flowchart: Restore the original string by entering the compressed string with this rule.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to read the mass data and find the number of islands.
Next: Write a Java program to cut out words of 3 to 6 characters length from a given sentence not more than 1024 characters.

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