2012-07-06 62 views
0

在變量中我有一個字符串值Agriculture & Development。我想從字符串Agriculture &開發中刪除空白字符和字符'&',使它看起來像使用jquery或javascript的Agriculture_Development。使用jquery刪除替換字符

+1

到目前爲止好。顯然你在這裏沒有問題,所以只要繼續做就可以了。 – lanzz 2012-07-06 06:58:43

+0

請選中此以下鏈接首款谷歌之前問的問題 http://stackoverflow.com/questions/2145988/string-replace-in-jquery – muthu 2012-07-06 07:01:13

回答

4

無需jQuery的這裏,純JS會做:

var nwstr = 'Agriculture & Development' 
       .replace(/\s+/g,'') 
       .replace(/\&/,'_'); 
//=> Agriculture_Development 

現在go and figure東西出來自己

+0

你快:) – TRR 2012-07-06 07:03:37

+3

或''農業Development'.replace (/ [\ s&] +/g,'_')'簡單地用一個'_'替換所有的空格組和/或'&'。 – Supr 2012-07-06 07:16:07

1
var str = "Agriculture & Development"; 
// replace all the white space and the & 
str.replace(/\s+/g, '').replace(/\&/,'_');