Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常の空白のみをトリミングし、 改行以外のスペースを保持したい。私の最善の策は何ですか?
更新:トリムとは、先行または後続のいずれかを意味します。特に 以外の先頭の空白を削除する必要がありますが、末尾または単に末尾についても同じことを行う回答をいただければ幸いです。
すべての空白を空白に置き換えます。
var dest = 'test value'; result_val=dest.split(" ").join("");
デモ