我有一个字符串,我只想修改它的某些部分。
我想用我自己的自定义文本[summary]=
替换所有内容。&
这是一个字符串示例
var test = "http://www.facebook.com/sharer.php?s=100&p[url]=http://whatever&p[summary]=aaa&p[title]=blahblahblah&p[images][0]=test.jpg";
[summary]=
有时and里面什么都没有&
var test2 = "http://www.facebook.com/sharer.php?s=100&p[url]=http://whatever&p[summary]=&p[title]=blahblahblah&p[images][0]=test.jpg";
我在想这样的事情,但这个 reg 不起作用
alert( test.replace("/^\[summary\]\=(.*)&/", "test") ) ;