<?php $dom = new DOMDocument(); $text="<h2>Introduction of Abdominal aortic aneurysm</h2> <p>In this section, we will learn about symptom, causes, and treatment of AAA</p> <h2>This is Treatment for a burst AAA</h2><p>.......<p> <h2>.........</h2>"; $dom->loadHTML($text); $elms = $dom->getElementsByTagName("h2"); foreach($elms as $elm) { if (strstr($elm->nodeValue, "Treatment") !== false) { echo $elm->C14N(); } }
You have javascript disabled. You will not be able to edit any code.