php regex 通常在 php 代码中查找代码的某些部分并在某些内容之前插入
我再次陷入我的应用程序的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解你的问题,并且你只是在寻找一个正则表达式来匹配两个字符串之间的所有内容,你可能会像这样:
在 PHP 中,如果你正在组装正则表达式,你可能想要这样做:
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:
In PHP if you are assembling the regex, you may want to do: