I have string with multiple {{Start:SomeName}}
and I need to repalce it with
<div data-name="SomeName"></div>
and {{End:SomeName}}
to </div>
I was trying use replace like this replace("{{Start:", '<div data-name="');
but this works only for start part.. maybe some regex, but I don't know how.
I'll be greatful for any help