Example 1: js replace space with underscore var string = "my name"; string = string.replace(/ /g, "_"); //returns my_name Example 2: replacing each space in ...
確定! 回上一頁