gpt4 book ai didi

Php 使用正则表达式查找字符串

转载 作者:IT王子 更新时间:2023-10-28 23:52:43 24 4
gpt4 key购买 nike

我已经阅读了多篇关于正则表达式的教程,但它不会让我印象深刻。我永远无法让我的模式发挥作用。希望有人能帮忙。

我有一个 php 变量 ($content),我需要在其中找到一个看起来像这样的特定模式

[画廊::name/of/the/folder/]

我想搜索:

- starting with "[gallery::"
- any other character (variable length)
- ending with "]"

到目前为止,在 PHP 中我有:

   preg_match('/\[gallery\:/', $content, $matches, PREG_OFFSET_CAPTURE);

我可以找到[画廊:但仅此而已。我希望能够找到其余的(:name/of/the/folder/])

感谢任何帮助!谢谢!

最佳答案

尝试捕捉它:

preg_match("/\[gallery::(.*?)]/", $content, $m);

现在 $m 是一个数组:

0 => [gallery::/name/of/the/folder/]
1 => /name/of/the/folder/

关于Php 使用正则表达式查找字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10142658/

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