我有以下文字。
My name is ++name++. My age is ++age++. Name of my city is ++city++ and so on.
所以我想找出所有用++包装的实例并用jQuery将它们推送到数组中。
答案 0 :(得分:0)
试试这个:
"My name is ++name++. My age is ++age++. Name of my city is ++city++ and so on."
.match(/\+\+.*?\+\+/g)
.map(function(s){
return s.slice(2, -2);
})