JavaScript 正規表現で文字列の最後にある空白を除去する

環境
Google Chrome 111.0.5563.147
Windows 10 Home 64bit

構文
文字列.replace(/\s+$/g,")
正規表現を使用して文字列の最後にある空白を除去します。

使用例

let str = "テストデータ ";
console.log(str.length); 

//文字列の最後にある空白を除去する
let result = str.replace(/\s+$/g,'');
console.log(result); 
console.log(result.length);

実行結果
> 7
> “テストデータ"
> 6

JavaScript

Posted by arkgame