Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
できれば少し助けが必要です。複数の新しい行と冗長な空白が1つ以上発生した場合に削除するには、phpの正規表現が必要です。
for example Hi this is a test code
------------------>上記をに変換
Hi this is a test code
使用する :
echo preg_replace("/(^\s+|\s+$)/m","\r\n",$text);
参照:リンク:
PHPまたは正規表現を使用して、新しい行の最初と最後の空白をどのようにトリミングしますか