Kmspico Download | Official KMS Activator Website [New Version 2024] Fast and Easy Converter YouTube to MP3 Online KMSAuto Net Activator Download 2024 Immediate Byte Pro Neoprofit AI Blacksprut without borders. Discover new shopping opportunities here where each link is an entrance to a world ruled by anonymity and freedom.

Remove Multiple Extra Whitespace and Convert into Single Space Using PHP?

Friends experts php will tell you today how you can convert multiple extra space between words of any string into single space.

How to Replace multiple whitespace characters with a single space, How to Remove White Space from a String in PHP

You are explained by example below.

Input String Question :- $str = “Hello Experts PHP

Top Website Experts php “;

Output String Question :- $str = “Hello Experts PHP Top Website Experts php”;

<?php
$str = "Hello Experts PHP      

Top Website Experts php ";

$cleanStr = trim(preg_replace('/\s\s+/', ' ', str_replace("\n", " ", $str)));

echo $cleanStr;
?>