查找占位符然后使用jQuery放入数组中

时间:2014-06-19 16:17:38

标签: jquery

我有以下文字。

My name is ++name++. My age is ++age++. Name of my city is ++city++ and so on.

所以我想找出所有用++包装的实例并用jQuery将它们推送到数组中。

1 个答案:

答案 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);
    })