I need the following replace function:
Replace all line breaks to <br> but not if a line break comes after an </h1>
or </h2> or ....  </hx>


Currently I use this preg_replace but it's not good enough for all
situations.

$text = preg_replace("/([^\<][^\/][^h][^1-9].{1})\r\n/","\\1<br  />",$text);


????

Thanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to