-2
A
回答
0
CODE:
var str = "String String String";
str = str.replace(/ /g,''); // ' ' -> REMOVE ONLY ' ', NOT \n, \r, \t, and \f
console.log(str); // '/g' -> GLOBAL or MATCH_ALL or FIND ALL ' '
注意:如果要包括\n, \r, \t, \f, and " "
更改/ /g
到/\s/g
OUTPUT:
StringStringString
+0
使用'\ s +'可能會更高效一些。 – jfriend00 2013-02-27 19:07:11
0
這樣的:
var s = "my cool example string";
var s_no_space = s.replace(/ /g, '');
0
您可以使用正則表達式:
var str = "a string with spaces";
var nospacesStr = str.replace(/\s/g, ""); // "astringwithspaces"
相關問題
- 1. 刪除字符串中的空格Javascript
- 2. 在JavaScript中刪除字符串中的第(n)個空格
- 3. 如何使用JavaScript從字符串中刪除空格?
- 4. 如何在C中刪除字符串中的空格?
- 5. 刪除Java字符串中的空格?
- 6. 刪除字符串中的空格
- 7. 刪除字符串中的空格
- 8. 刪除字符串中的空格
- 9. 刪除XML字符串中的空格
- 10. Python - 刪除字符串中的空格
- 11. 刪除Python字符串中的空格
- 12. 刪除字符串中的空格
- 13. 刪除字符串中的空格
- 14. 從JavaScript字符串中刪除零寬度空格字符
- 15. 在JavaScript /正則表達式中,如何刪除字符串中的雙空格?
- 16. 從javascript中刪除空字符串
- 17. 從長字符串空格中刪除單個空格字符
- 18. 如何從字符串中刪除雙字符和空格
- 19. 只從字符串中刪除空格
- 20. awk從字符串中刪除空格
- 21. QStringList從字符串中刪除空格
- 22. 從字符串中刪除空格
- 23. 從字符串中刪除空格
- 24. 從字符串中刪除空格
- 25. 如何在R中的字符串結尾刪除雙空格?
- 26. 如何從Lua中的字符串中刪除空格?
- 27. 如何從C++中的字符串中刪除空格
- 28. 如何從Arduino中的字符串中刪除空格?
- 29. 如何從OCaml中的字符串中刪除空格?
- 30. 如何從javascript中的字符串中刪除子字符串?
這就是所謂的正常化。 – 2013-02-27 18:53:45
只是空格?標籤和換行符呢? – 2013-02-27 18:55:48