ホームページ >バックエンド開発 >PHPチュートリアル >正規表現を使用して PHP テキストから空白行を効果的に削除する方法
How to Eliminate Blank Lines from PHP Text
You're attempting to remove blank lines (including whitespace lines) in PHP using regular expressions, but your current approach appears ineffective. Here's a solution to address your issue:
The following regular expression will remove blank lines, whether they contain whitespace or are completely empty:
<code class="php">preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $string);</code>
Let's break down the elements of this regular expression:
This regular expression replaces the matched blank lines with a single newline character (\n). As a result, the output will remove all empty lines from your text, leaving only non-blank lines intact.
以上が正規表現を使用して PHP テキストから空白行を効果的に削除する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。