$re = '/^(?!<div>)(.*)$/m';
$str = '<div>Lorem ipsum.</div> - эту строку не надо;
Lorem ipsum. - эту строку надо;
<li>Lorem ipsum.</li> - и эту строку надо;
<div>Lorem ipsum.</div> - эту не надо.';
preg_match_all($re, $str, $matches);
// Print the entire match result
print_r($matches);
<?php
$re = '`^[\w]$`iu';
$str = 'm²';
//$str = 'm';
preg_match($re, $str, $matches);
// Print the entire match result
print_r($matches);
?>