Semas
Semas

Reputation: 879

Regex split into array of pieces

I was wondering how could I split this string

{{MENU}}<li><a href="{{LINK}}" title="{{TITLE}}"><span>{{TITLE}}</span></a></li>{{/MENU}}

Into array of:

array(
    "<li><a href=\"",
    "{{LINK}}",
    "\" title=\"",
    "{{TITLE}}",
    "\"><span>",
    "{{TITLE}}",
    "</span></a></li>"
)

It also should work with more different formats like:

{{MENU}}<a href="{{LINK}}" title="{{TITLE}}">{{TITLE}}</a>{{/MENU}}
{{MENU}}<b><a href="{{LINK}}" title="{{TITLE}}">{{TITLE}}</a></b>{{/MENU}}

My problem is that I don't know how to write this complex regex yet.

Upvotes: 0

Views: 213

Answers (1)

Colin Hebert
Colin Hebert

Reputation: 93167

You can try with preg_split()


$yourArray = preg_split("/({{\w+}})/", $yourText, -1, PREG_SPLIT_DELIM_CAPTURE);

The code


Resources :

On the same topic :

Upvotes: 4

Related Questions