var pattern = new RegExp(/[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/);
我使用RegExp檢查字符串的不可用字符。我怎樣才能將空格字符添加到該字符?Java腳本RegExp
var pattern = new RegExp(/[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/);
我使用RegExp檢查字符串的不可用字符。我怎樣才能將空格字符添加到該字符?Java腳本RegExp
\ s爲空格字符。在這裏看到更多的信息:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/RegExp
與\ W,從其他評論,但無論如何感謝! – rergergergerg
'不可用字符串'是什麼意思? – gurvinder372