php regex 通常在 php 代码中查找代码的某些部分并在某些内容之前插入

发布于 2024-12-28 07:35:13 字数 466 浏览 0 评论 0原文

我再次陷入我的应用程序的 php 正则表达式部分:( 实际上我正在搜索一种通用正则表达式,它将通过模板搜索和替换

-任何字符串,该字符串在字符串 A 之前并以字符串 B 结尾

-将该字符串与起始字符串 A 和起始字符串 B 一起使用 -插入它,

所以可以说我需要在代码中搜索

$template = 'admin_list.tpl';

我能做的

$start="$template = '"; $end="';";

$template= "????????????????????";
$ocur=preg_match_all($search_template,$file_get_contents,$matches);

所有内容,那么该放什么而不是???????????????那么通常在给定的 A 和 B 中搜索内容会被发现吗?

I am again stuck in php regex part of my app :(
Actually I am searching a type of an universal regex which will search and replace by template

-Any string, which has before string A and ends with string B

-Take that string with the starting string A and with starting string B
-insert it

so lets say I have a need to search in code all

$template = 'admin_list.tpl';

I could make

$start="$template = '"; $end="';";

$template= "????????????????????";
$ocur=preg_match_all($search_template,$file_get_contents,$matches);

so what to put instead of ?????????????? so that generally the search of content inside some given A and B will be found?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我老 2025-01-04 07:35:13

如果我理解你的问题,并且你只是在寻找一个正则表达式来匹配两个字符串之间的所有内容,你可能会像这样:

/FIRSTSTRING(.*?)SECONDSTRING/s

在 PHP 中,如果你正在组装正则表达式,你可能想要这样做:

$regex ="/".preg_quote($start)."(.*?)".preg_quote($end)."/s";

If I understand your question and you're just looking for a regex to match everything between two strings, you'd probably just us something like:

/FIRSTSTRING(.*?)SECONDSTRING/s

In PHP if you are assembling the regex, you may want to do:

$regex ="/".preg_quote($start)."(.*?)".preg_quote($end)."/s";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文