当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java String repeat()用法及代码示例


该字符串可以重复N次,并且我们可以生成一个具有重复的新字符串。 repeat()方法用于返回String,其值是给定String重复计数时间的串联。如果字符串为空或计数为零,则返回空字符串。

用法:

string.repeat(count);

参数:接受一个整数计数,这是我们要重复该字符串的次数。

返回:字符串,其值是给定String重复计数时间的串联

例:



Input:

string = abc
count = 3

Output:

abcabcabc

Input:

string = xyz
count = 0

Output:

null

算法:

  1. 首先,我们接受String的输入。
  2. 然后,我们将repeat()方法与我们要重复的字符串的计数一起使用。

范例1:

Java

// 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)); 
  
      } 
}
输出
String:abcabcabc

范例2:

Java

// 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)); 
           
    } 
}
输出
string:

相关用法


注:本文由纯净天空筛选整理自sambhavshrivastava20大神的英文原创作品 String Class repeat() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。