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 text = this.get('text').toLowerCase().replace(' ','');
しかし、それは期待どおりに機能せず、すべてのスペースを置き換えません。 関連する場合は MooTools を使用しています。
Mootools の置換は、グローバル修飾子で正規表現を使用しない限り、最初のインスタンスのみを置換します。代わりにこれを試してください。
var text = this.get('text').toLowerCase().replace(/\s/g,'');