gpt4 book ai didi

php - 删除PHP中的部分字符串

转载 作者:行者123 更新时间:2023-12-02 21:42:17 24 4
gpt4 key购买 nike

如何替换内容中未使用的部分。例如:

$content = "
Test content

[section]
Section Content
[section]

End.
";

$content = preg_replace('/\[section\](.*)\[section\]/', '', $content);

谢谢

最佳答案

s修饰符允许模式中的点元字符匹配所有字符,包括换行符。

i修饰符用于不区分大小写的匹配,允许大写和小写字母。通过添加量词?,它可以实现非贪婪匹配,并匹配尽可能少的数量。

$content = preg_replace('/\[section\].*?\[section\]/si', '', $content);

参见Demo

关于php - 删除PHP中的部分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20168378/

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