我有自定义代码[tag val=100][/tag]
。如何获得val
以及标签之间的任何内容?
例如:
[tag val=100]apple[/tag]
value1 = 100
value2 = apple
编辑:如果我在标签内有多个项目,该怎么办? 例如:
[tag val=100 id=3]
答案 0 :(得分:2)
如果您的问题中有这样的字符串,则可以使用preg_match
代替preg_match_all
:
$str = "[tag val=100]apple[/tag]";
preg_match("/\[.+? val=(.+?)\](.+?)\[\/.+?\]/", $str, $matches);
$value = $matches[1]; // "100"
$content = $matches[2]; // "apple"
更新:我发现每个元素中可能有多个属性。在这种情况下,这应该工作:
// captures all attributes in one group, and the value in another group
preg_match("/\[.+?((?:\s+.+?=.+?)+)\](.+?)\[\/.+?\]/", $str, $matches);
$attributes = $matches[1];
$content = $matches[2];
// split attributes into multiple "key=value" pairs
$param_pairs = preg_split("/\s+/", $attributes, -1, PREG_SPLIT_NO_EMPTY);
// create dictionary of attributes
$params = array();
foreach ($param_pairs as $pair) {
$key_value = explode("=", $pair);
$params[$key_value[0]] = $key_value[1];
}
答案 1 :(得分:1)
这将是它的正则表达式:
'#\[tag val=([0-9]+)\]([a-zA-Z]+)\[\/tag])#'
Val是一个数字,你的'apple'可以是一个或多个字母字符。如果您想匹配更多字符,请将[a-zA-Z]+
替换为.+?
。