我正在研究一个正则表达式,但我无法修复它。
我正在使用 PHP 扫描文档 (.php),我正在寻找:$__this('[TEXT]')
或$__this("[TEXT]")
所以我的问题是:有人可以帮助我使用在字符串中搜索的正则表达式:$__this('[TEXT]')
或$__this("[TEXT]")
并给我[TEXT]
更新(有答案,感谢@Explosion Pills):
$string = '$__this("Foo Bar<br>HelloHello")';
preg_match('/\$__this\(([\'"])(.*?)\1\)/xi', $string, $matches);
print_r($matches);