I have a while dom document string inside variable, I want to grab only content of a div using id, I can't use PHP dom parser, is it possible using Regex?
<html>
....
<body>
....
<div id="something">
// content
</div>
<div id="other_divs">
// content
</div>
</body>
</html>