trim()方法是一個內置方法TypeScript。它用於消除任何類型的額外空格,從所提供字符串的前端和後端到兩側。值得注意的是,這個函數也存在於 JavaScript 中。
用法:
string.trim()
參數:
該方法不帶任何參數。
返回值:
它返回一個已去除任何前導或尾隨空格的新字符串。
示例 1:下麵的代碼示例是 TypeScript 中 trim() 方法的基本實現。
Javascript
const str: string = " GeeksforGeeks ";
const trimmedStr: string = str.trim();
console.log(trimmedStr);
輸出:
GeeksforGeeks
示例 2:在下麵的代碼中,字符串是使用製表符和其他特殊空格字符定義的,我們將使用trim()方法刪除它。
Javascript
const str: string = "\tHello\n Geeks!\n";
const trimmedStr: string = str.trim();
console.log(trimmedStr);
輸出:
Hello
Geeks!
相關用法
- 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 padStart()用法及代碼示例
- TypeScript String normalize()用法及代碼示例
- TypeScript String match()用法及代碼示例
- TypeScript String matchAll()用法及代碼示例
- TypeScript String padEnd()用法及代碼示例
- TypeScript String.fromCharCode()用法及代碼示例
- TypeScript String.raw()用法及代碼示例
- TypeScript String轉Boolean用法及代碼示例
- TypeScript String轉JSON用法及代碼示例
注:本文由純淨天空篩選整理自pankajbind大神的英文原創作品 TypeScript String trim() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。