padEnd()方法,在TypeScript, 是相反的padStart()可用于在字符串末尾插入字符。与padStart() 不同,它还专注于在字符串末尾添加填充以保持一致性。
用法:
string.padEnd(targetLength: number, padString?: string): string
参数:
- targetLength:在这里,您必须在添加填充后传递您想要的最终字符串的长度。
- 填充字符串(可选):用于填充的字符。如果未指定,则默认为空格 (‘ ‘)。
返回值:
返回指定的新字符串目标长度与填充字符串应用在当前字符串的末尾。
示例 1:以下代码是padEnd()方法的基本实现。
Javascript
let originalStr: string = "GeeksforGeeks";
let paddedStr: string = originalStr.padEnd(20);
console.log(paddedStr, paddedStr.length);
输出:
GeeksforGeeks 20
示例 2:下面的代码向给定字符串添加填充 0,直到长度为 6。
Javascript
let numberString: string = "456";
let paddedNumber: string =
numberString.padEnd(6, "0");
console.log(paddedNumber, paddedNumber.length);
输出:
456000 6
相关用法
- TypeScript String padStart()用法及代码示例
- TypeScript String charAt()用法及代码示例
- TypeScript String charCodeAt()用法及代码示例
- TypeScript String concat()用法及代码示例
- TypeScript String indexOf()用法及代码示例
- TypeScript String lastIndexOf()用法及代码示例
- TypeScript String localeCompare()用法及代码示例
- TypeScript String replace()用法及代码示例
- TypeScript String search()用法及代码示例
- TypeScript String slice()用法及代码示例
- TypeScript String split()用法及代码示例
- TypeScript String substr()用法及代码示例
- TypeScript String substring()用法及代码示例
- TypeScript String includes()用法及代码示例
- TypeScript String codePointAt()用法及代码示例
- TypeScript String repeat()用法及代码示例
- TypeScript String endsWith()用法及代码示例
- TypeScript String trim()用法及代码示例
- TypeScript String normalize()用法及代码示例
- TypeScript String match()用法及代码示例
- TypeScript String matchAll()用法及代码示例
- TypeScript String.fromCharCode()用法及代码示例
- TypeScript String.raw()用法及代码示例
- TypeScript String转Boolean用法及代码示例
- TypeScript String转JSON用法及代码示例
注:本文由纯净天空筛选整理自pankajbind大神的英文原创作品 TypeScript String padEnd() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。