我希望我能问这个问题,我就在四舍五入周围搜寻,找到了简单的问题,但没有为我找到解决办法。
I have HTML like this:
<h1>Beatles: A Hard Days Night</h1>
now I would like a regex to match everything AFTER the colon. So A Hard Days Night
in this case.
这是我尝试的:
$pattern = "/<h1>:(.*)</h1>/";
但是,这只是空洞的。