我有一个字符串,例如“[{xyz123}]这是一个测试”,需要解析出[{and}]之间的内容并转储到另一个字符串中。我想一个正则表达式是为了实现这一点,但由于它不是为微弱的心脏,我没有尝试和需要你的帮助。
在{和}之间插入片段的最佳方法是什么?提前谢谢你的帮助!
最佳答案
<?php
$str = "[{XYZ123}] This is a test";
if(preg_match('/\[{(.*?)}\]/',$str,$matches)) {
$dump = $matches[1];
print "$dump"; // prints XYZ123
}
?>