正则表达式匹配字符串之间的所有内容 - 复杂

时间:2013-04-22 22:57:03

标签: regex

我有这个代码: http://pastebin.com/7MZHVu2T

我需要在公共功能addTopicParticipants'之间获取所有内容。和'公共功能deleteTopics'

我试过了:

/public function addtopicParticipants(.*?)public function deleteTopics/

这是我唯一记得的事。

1 个答案:

答案 0 :(得分:1)

preg_match('/public function addTopicParticipants(.*?)public function deleteTopics/s', $text, $match;

$found = $match[1];

s修饰符允许.匹配换行符。

经过测试here