You can remove the whitespace in a string by using a string.replace(/\s/g, "") regular expression or a string.split(" ").join("") method ...
確定! 回上一頁