中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中String.repeat()的作用是什么

發布時間:2021-07-01 15:33:05 來源:億速云 閱讀:239 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關Java中String.repeat()的作用是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

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類

如果不是正則表達式,則可以使用 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()的作用是什么,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

师宗县| 大石桥市| 若羌县| 纳雍县| 加查县| 巫溪县| 成武县| 张北县| 板桥市| 枣阳市| 旬邑县| 油尖旺区| 西平县| 潮州市| 台州市| 砀山县| 资溪县| 红河县| 正镶白旗| 白水县| 休宁县| 定南县| 思茅市| 南宫市| 大兴区| 安西县| 海淀区| 牡丹江市| 永济市| 华坪县| 惠东县| 涡阳县| 南通市| 石河子市| 绥阳县| 奉化市| 门源| 尖扎县| 祁阳县| 闽侯县| 都匀市|