TypeScript trimで文字列(string)の空白を全削除するサンプル
環境
Windows 11 Pro 64bit
TypeScript 4.4.4
構文
const 変数名: string = text.trim()
trim()は、呼び出した文字列(string)の前後の空白を削除した文字列を返します。
文字列(string)の前後の空白を削除するには、trim()を使います。
使用例
const strA: string = " A B C D E F " const result: string = strA.trim() console.log(result)
出力結果:
“A B C D E F"