Open In App

String Class repeat() Method in Java with Examples

The string can be repeated N number of times, and we can generate a new string that has repetitions. repeat() method is used to return String whose value is the concatenation of given String repeated count times. If the string is empty or the count is zero then the empty string is returned. 

Syntax:



string.repeat(count);

Parameter: Accepts an integer count which is the number of times we want to repeat the string.

Returns: String whose value is the concatenation of given String repeated count times



Example:

Input:

string = abc
count = 3

Output:

abcabcabc

Input:

string = xyz
count = 0

Output:

null

Algorithm:

  1. Firstly, we take the input of String.
  2. Then we use the repeat() method with the number of counts we want to repeat the string.
     

Example 1:




// Java program to demonstrate the usage of 
// repeat() method
  
import java.io.*;
  
class GFG {
    public static void main (String[] args) {
        
      String string="abc";
        
      int count=3;
        
      System.out.println("String :"+string.repeat(count));
  
      }
}

Output
String :abcabcabc

Example 2:




// Java program to demonstrate the usage of 
// repeat() method
  
import java.io.*;
  
class GFG {
    public static void main (String[] args) {
        
       String string="xyz";
       int count=0;
        
       System.out.println("string :"+string.repeat(count));
           
    }
}

Output
string :

Article Tags :