У меня есть этот HTML
<div itemprop="mainContentOfPage">
<h1 style="margin-top: -20px;">Welcome</h1>
It is sunny outside.....
<div>
Мне нужно что-то вроде этого:
<div>
It is sunny outside.....
<div>
Я пробовал эти два, но не повезло
$string = preg_replace("/<h1>[^>]+>/","", $string); //remove <h1>
$string = preg_replace('|\<h1.*\>(.*\n*)\</h1\>|isU', '', $string);