0

正则表达式会匹配 while/loop 双花括号包含双花括号吗?

<?php
$str = '<html lang="{{var doc-lang}}">
<head>
<title>{{var doc-title}}</div>
</head>
<body>
<div class="container">
    <div class="row" {{while products}}>
        {{var name}}
        {{var sku}}
        {{var barcode}}
    </div {{while end}}>
</div>
</body>
</html>';

我们能得到

<div class class="row"', [products], {{var name}}, {{ var sku}} and {{var barcode}}

$str?

我只能想到这个Reg

\<((.*)\{\{while\s+(.*)\}\}(.*)\{\{while\s+end\}\})\>

正则表达式101

4

1 回答 1

2

试试这个:

/\s*(.*\{\{while\s+.*(?:\r?\n.*)+\{\{while\s+end.*)/

在线演示


还要单独获取它们(正如您在问题和评论中提到的那样),试试这个:

/\s*(?:(.*)\s+\{\{while\s+(.*)\}\}.*\r?\n\s*(.*)\r?\n\s*(.*)\r?\n\s*(.*)\r?\n.*)/

你可以像这样得到你需要的东西:

'$1', [$2], $3, $4 and $5

输出:

'<div class class="row"', [products], {{var name}}, {{ var sku}} and {{var barcode}}

在线演示

于 2016-02-19T13:28:25.147 回答