用regex php获取嵌套花括号之间的值

时间:2011-08-29 12:10:02

标签: php regex

我有嵌套花括号的模板代码,如下所示:

{code{attributes}}

我想要两个值:'code'和'attributes',我该怎么做?

2 个答案:

答案 0 :(得分:5)

尝试以下方法:

$a = '{code{attributes}}';
$matches = array();

preg_match('/\{(.+)\{(.+)\}\}/', $a, $matches);

var_dump($matches);

输出:

array(3) {
  [0]=>
  string(18) "{code{attributes}}"
  [1]=>
  string(4) "code"
  [2]=>
  string(10) "attributes"
}

编辑:如果属性是可选的,请尝试以下操作:

$a = '{code{attributes}}';
$b = '{code}';

$regex = '/\{(.+?)(?:\{(.+)\})?\}/';

$matches = array();
preg_match_all($regex, $a, $matches);
var_dump($matches);

$matches = array();
preg_match_all($regex, $b, $matches);
var_dump($matches);

输出:

array(3) {
  [0]=>
  array(1) {
    [0]=>
    string(18) "{code{attributes}}"
  }
  [1]=>
  array(1) {
    [0]=>
    string(4) "code"
  }
  [2]=>
  array(1) {
    [0]=>
    string(10) "attributes"
  }
}
array(3) {
  [0]=>
  array(1) {
    [0]=>
    string(6) "{code}"
  }
  [1]=>
  array(1) {
    [0]=>
    string(4) "code"
  }
  [2]=>
  array(1) {
    [0]=>
    string(0) ""
  }
}

答案 1 :(得分:0)

这可能有点过于笼统,但也许(\ {。*?\})可以起作用?

通过txt2re

进行测试