特殊文字が含まれている可能性のある文字列があり、ハイフンに置き換える必要があります
var str="123.This is,, :ravi"
上記の文字列は次のように変換する必要があります
var newstr="123-This-is-ravi";
私はこれを試してきました
function remove(str){ str.replace(/\./g, "-"); } //replaces only dots
function remove(str){ str.replace(/ /g, "-"); } //replaces only spaces
これを行うのを手伝ってくれる人はいますか?特殊文字をハイフンに置き換える必要があります。