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: Make a new string made of p number of characters from the first of a given string and followed by p-1 number characters till the p is greater than zero

Java String: Exercise-84 with Solution

Write a Java program to make a new string made of p number of characters from the first of a given string and followed by p-1 number characters till the p is greater than zero.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String beginningRepetition(String stng, int n) 
{
  int l = stng.length();
  String newstring = "";
  for (int i = n; n > 0; n--)
  {
    newstring += stng.substring(0,n);
  }
  return newstring;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "welcome";
	  int rep_no=4;
      System.out.println("The given string is: "+str1);
	  System.out.println("Number of repetition characters and repetition: "+rep_no);
      System.out.println("The new string is: "+m.beginningRepetition(str1,rep_no));
	  }
}

Sample Output:

The given string is: welcome
Number of repetition characters and repetition: 4
The new string is: welcwelwew

Flowchart:

Flowchart: Java String Exercises - Make a new string made of p number of characters from the first of a given string and followed by p-1 number characters till the p is greater than zero

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to make a new string from two given string in such a way that, each character of two string will come respectively.
Next: Write a Java program to make a new string with each character of just before and after of a non-empty substring whichever it appears in a non-empty 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