Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
var text = "Hello [[world]] and hello [[party]]"; var res = text.match(/\[\[.*\]\]/);
[[world]] and hello [[party]]
and hello
text.match(/\[\[[^\]\]]*\]\]/g)
*?
var text = "Hello [[world]] and hello [[party]]"; var res = text.match(/\[\[.*?\]\]/g);