提取大括号正则表达式php之间的所有值

前端之家收集整理的这篇文章主要介绍了提取大括号正则表达式php之间的所有值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个表格的内容
$content ="<p>This is a sample text where {123456} and {7894560} ['These are samples']{145789}</p>";

我需要数组中的大括号之间的所有值,如下所示:

array("0"=>"123456","1"=>"7894560","2"=>"145789")

我试过这个代码

<?PHP
preg_match_all("/\{.*}\/s",$content,$matches);
?>

但是,我从这个值得从第一个大括号到最后发现的内容.可以通过以上格式获取阵列?我知道我使用的模式是错误的.要获得上述所需的输出应该给予什么?

这样做…
<?PHP
$content ="<p>This is a sample text where {123456} and {7894560} ['These are samples']{145789}</p>";
preg_match_all('/{(.*?)}/',$matches);
print_r(array_map('intval',$matches[1]));

输出

Array
(
    [0] => 123456
    [1] => 7894560
    [2] => 145789
)
原文链接:https://www.f2er.com/regex/356721.html

猜你在找的正则表达式相关文章