<?php $str = <<<EOT start<body> Some text Some more text </body> text after body EOT; $regex = "/.*<body>(.*?)<\/body>/ms"; $result = preg_match( $regex, $str, $matches); print_r($matches[1]);
You have javascript disabled. You will not be able to edit any code.