本篇文章給大家分享的是有關Java中String.repeat()的作用是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
成都網(wǎng)站建設公司更懂你!創(chuàng)新互聯(lián)公司只做搜索引擎喜歡的網(wǎng)站!成都網(wǎng)站制作前臺采用搜索引擎認可的DIV+CSS架構,全站HTML靜態(tài),H5頁面制作+CSS3網(wǎng)站,提供:網(wǎng)站建設,微信開發(fā),成都小程序開發(fā),商城網(wǎng)站建設,成都app軟件開發(fā)公司,空間域名,服務器租售,網(wǎng)站代托管運營,微信公眾號代托管運營。
此方法返回一個字符串,該字符串的值是給定字符串的重復 count
次的串聯(lián)。如果字符串為空或 count
為零,則返回空字符串。
/** * Parameters: * count - number of times to repeat * * Returns: * A string composed of this string repeated count times or the empty string if this string is empty or count is zero * * Throws: * IllegalArgumentException - if the count is negative. */ public String repeat(int count)
Java程序將字符串" Abc"重復3次。
public class Main { public static void main(String[] args) { String str = "Abc"; System.out.println( str.repeat(3) ); } }
程序輸出。
AbcAbcAbc
如果您正在使用JDK <= 10,則可以考慮使用regex將字符串重復N次。
Java程序將字符串" Abc"重復3次。
public class Main { public static void main(String[] args) { String str = "Abc"; String repeated = new String(new char[3]).replace("\0", str); System.out.println(repeated); } }
程序輸出。
AbcAbcAbc
如果不是正則表達式,則可以使用 StringUtils 類及其方法repeat(times)。
import org.apache.commons.lang3.StringUtils; public class Main { public static void main(String[] args) { String str = "Abc"; String repeated = StringUtils.repeat(str, 3); System.out.println(repeated); } }
程序輸出。
AbcAbcAbc
以上就是Java中String.repeat()的作用是什么,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。