gpt4 book ai didi

php - 从文本文件中删除空行

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:55:02 27 4
gpt4 key购买 nike

<分区>

我有一个文本文件,里面有一些空行。意思是什么都没有,只是占用空间。

看起来像这样:

The

quick
brown

fox jumped over
the

lazy dog

我需要它看起来像这样:

The
quick
brown
fox jumped over
the
lazy dog

我怎样才能删除那些空行,只取包含内容的行并将它们写入新文件?

这是我知道的方法:

$file = fopen('newFile.txt', 'w');
$lines = fopen('tagged.txt');
foreach($lines as $line){
/* check contents of $line. If it is nothing or just a \n then ignore it.
else, then write it using fwrite($file, $line."\n");*/
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com