javascript RegEx detect only spaces s
本问题已经有最佳答案,请猛点这里访问。
我正在检测文本区域上的空间我的代码如下
1 | textarea.value.replace(/\s/g, ' '); |
但它检测所有空格,我只想检测空格…
有什么解决办法吗??
1 2 | textarea.value.replace(/ /g, ' '); // that's a space ------^ |
使用文本空间,如:
1 | textarea.value.replace(/ /g, ' '); |
使用此:
1 | textarea.value.replace(/[ ]/g, ' '); |
号