當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


TypeScript String repeat()用法及代碼示例


在 TypeScript 中,repeat() 方法通過複製原始字符串達到一定的迭代次數來幫助生成新字符串。它是 TypeScript 和 JavaScript 的內置方法。

用法

string.repeat(count: number): string;

參數:

  • count: 您想要重複該字符串的次數。

返回值:

由原始字符串重複 count 次組成的新字符串。

示例 1:演示使用 repeat() 方法通過重複字符串來創建字符串。

Javascript


const geek: String = "GeeksForGeeks";
const repeatedGeek: String = 
    geek.repeat(3);
console.log(repeatedGeek);

輸出:

GeeksForGeeksGeeksForGeeksGeeksForGeeks

示例 2:演示通過重複字符串來創建字符串。

Javascript


const numString: String = "12345";
const repeatedNumString: String = 
    numString.repeat(2);
console.log(repeatedNumString);

輸出:

1234512345

相關用法


注:本文由純淨天空篩選整理自pankajbind大神的英文原創作品 TypeScript String repeat() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。