您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Java中String.repeat()的作用是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
此方法返回一個字符串,該字符串的值是給定字符串的重復 count
次的串聯。如果字符串為空或 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()的作用是什么,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。