The PHP website created by its users!
Home
»
PHP » Strip blank lines
|
Strip blank lines
| Author | |
| Description | Strip blank lines or tab spaces from a string |
| Rating | (9 votes) |
PHP Code
<?php
$text=preg_replace("/[rn]+[st]*[rn]+/","n",$text);
?>
Comments
No comments posted yet.
|