此代碼中的模式不會替換括號。我也試過「/(|)/ g」。Javascript替換不會替換
var re = "/[^a-z]/g",
txt = navsel.options[i].text.split(" ")[0], // here I get the text from a select and I split it.
// What I expect is strings like "(en)" , "(el)" etc
txt = txt.replace(re," ")
在此先感謝
什麼是你輸入的文字和你有什麼期望的輸出是什麼? –
編輯,對不起,我沒有指定 – chchrist