gpt4 book ai didi

php - 大括号之间的 Preg 匹配 - preg_match

转载 作者:行者123 更新时间:2023-12-02 07:03:39 25 4
gpt4 key购买 nike

示例主题:{this}{is}a{my} {example}{{subject}}返回:

array(
[1] => 'this'
[2] => 'is'
[3] => 'my'
[4] => 'example'
[5] => 'subject'

这在 php 模板引擎中很常见引用 smarty 和 twig http://www.smarty.net/ http://twig.sensiolabs.org/

最佳答案

检查以下代码:

$str = '{this}{is}a{my} {example}{{subject}}';

if(preg_match_all('/{+(.*?)}/', $str, $matches)) {
var_dump($matches[1]);
}

输出:

array(5) {
[0] =>
string(4) "this"
[1] =>
string(2) "is"
[2] =>
string(2) "my"
[3] =>
string(7) "example"
[4] =>
string(7) "subject"
}

关于php - 大括号之间的 Preg 匹配 - preg_match,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16247482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com