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: Add a string with specific number of times separated by a substring

Java String: Exercise-77 with Solution

Write a Java program to add a string with specific number of times separated by a substring.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String addBySeparator(String main_str, String sep_str, int ctr) 
{
  String new_word = "";
  for (int i = 0; i < ctr; i++) 
  {
    if (i < ctr-1)
      new_word += main_str + sep_str;
    else
      new_word += main_str;
  }
  return new_word;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "try";
      String str2 =  "best";
	  int ctr=3;
	  
      System.out.println("The given strings are: "+str1+"  and  "+str2);
	  System.out.println("Number to times to be repeat: "+ctr);
      System.out.println("The new string is: "+m.addBySeparator(str1,str2,ctr));
	  }
}

Sample Output:

The given strings are: try  and  best
Number to times to be repeat: 3
The new string is: trybesttrybesttry

Pictorial Presentation:

Java String Exercises: Add a string with specific number of times separated by a substring.

Flowchart:

Flowchart: Java String Exercises - Add a string with specific number of times separated by a substring.

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to count how many times the substring 'life' present at anywhere in a given string. Counting can also happen for the substring 'li?e',any character instead of 'f'.
Next: Write a Java program to repeat a specific number of characters for specific number of times from the last part of a given 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